library(tidyverse)
library(dslabs)
gapminder %>%
  mutate(group=ifelse(continent=="Europe" | region=="Northern America","West","Rest"))
##                             country year infant_mortality life_expectancy
## 1                           Albania 1960        115.40000           62.87
## 2                           Algeria 1960        148.20000           47.50
## 3                            Angola 1960        208.00000           35.98
## 4               Antigua and Barbuda 1960               NA           62.97
## 5                         Argentina 1960         59.87000           65.39
## 6                           Armenia 1960               NA           66.86
## 7                             Aruba 1960               NA           65.66
## 8                         Australia 1960         20.30000           70.87
## 9                           Austria 1960         37.30000           68.75
## 10                       Azerbaijan 1960               NA           61.33
## 11                          Bahamas 1960         51.00000           62.00
## 12                          Bahrain 1960        134.50000           51.64
## 13                       Bangladesh 1960        176.30000           46.20
## 14                         Barbados 1960         69.50000           61.80
## 15                          Belarus 1960               NA           71.59
## 16                          Belgium 1960         29.50000           69.59
## 17                           Belize 1960               NA           60.08
## 18                            Benin 1960        186.90000           38.29
## 19                           Bhutan 1960        175.00000           35.94
## 20                          Bolivia 1960        173.40000           43.77
## 21           Bosnia and Herzegovina 1960        105.00000           62.56
## 22                         Botswana 1960        115.50000           50.34
## 23                           Brazil 1960        129.40000           55.27
## 24                           Brunei 1960         63.00000           62.52
## 25                         Bulgaria 1960         49.00000           69.22
## 26                     Burkina Faso 1960        161.30000           35.21
## 27                          Burundi 1960        145.10000           40.58
## 28                         Cambodia 1960               NA           42.29
## 29                         Cameroon 1960        166.90000           43.46
## 30                           Canada 1960         27.80000           71.00
## 31                       Cape Verde 1960               NA           50.12
## 32         Central African Republic 1960        165.50000           37.43
## 33                             Chad 1960               NA           40.95
## 34                            Chile 1960        127.60000           56.85
## 35                            China 1960        190.00000           30.53
## 36                         Colombia 1960         89.30000           58.03
## 37                          Comoros 1960        200.00000           44.04
## 38                 Congo, Dem. Rep. 1960        174.00000           43.90
## 39                      Congo, Rep. 1960        110.60000           48.25
## 40                       Costa Rica 1960         86.54000           61.97
## 41                    Cote d'Ivoire 1960        208.40000           38.00
## 42                          Croatia 1960         70.00000           64.85
## 43                             Cuba 1960         37.00000           63.85
## 44                           Cyprus 1960         30.00000           69.72
## 45                   Czech Republic 1960         22.00000           70.58
## 46                          Denmark 1960         21.30000           72.28
## 47                         Djibouti 1960               NA           45.77
## 48               Dominican Republic 1960        102.10000           53.37
## 49                          Ecuador 1960        121.40000           54.09
## 50                            Egypt 1960        209.60000           48.31
## 51                      El Salvador 1960        126.20000           52.02
## 52                Equatorial Guinea 1960               NA           37.69
## 53                          Eritrea 1960               NA           39.03
## 54                          Estonia 1960         40.00000           69.42
## 55                         Ethiopia 1960        162.00000           37.72
## 56                             Fiji 1960         54.00000           55.70
## 57                          Finland 1960         21.90000           69.03
## 58                           France 1960         23.70000           70.49
## 59                 French Polynesia 1960               NA           56.28
## 60                            Gabon 1960               NA           38.83
## 61                           Gambia 1960        148.40000           35.70
## 62                          Georgia 1960               NA           63.50
## 63                          Germany 1960         34.00000           69.26
## 64                            Ghana 1960        125.10000           46.34
## 65                           Greece 1960         48.30000           68.41
## 66                        Greenland 1960               NA           61.49
## 67                          Grenada 1960               NA           60.59
## 68                        Guatemala 1960        146.00000           46.51
## 69                           Guinea 1960               NA           35.71
## 70                    Guinea-Bissau 1960               NA           43.14
## 71                           Guyana 1960         67.70000           59.08
## 72                            Haiti 1960        194.80000           42.10
## 73                         Honduras 1960        140.90000           47.71
## 74                 Hong Kong, China 1960               NA           67.45
## 75                          Hungary 1960         53.40000           68.13
## 76                          Iceland 1960         17.50000           74.22
## 77                            India 1960        165.10000           41.26
## 78                        Indonesia 1960        148.40000           45.01
## 79                             Iran 1960        191.61000           46.00
## 80                             Iraq 1960        131.70000           46.96
## 81                          Ireland 1960         30.40000           70.76
## 82                           Israel 1960         32.00000           68.55
## 83                            Italy 1960         44.20000           69.19
## 84                          Jamaica 1960         62.00000           65.91
## 85                            Japan 1960         30.40000           67.78
## 86                           Jordan 1960        107.50000           53.30
## 87                       Kazakhstan 1960               NA           58.91
## 88                            Kenya 1960        118.60000           47.42
## 89                         Kiribati 1960               NA           45.84
## 90                      South Korea 1960         80.20000           53.02
## 91                           Kuwait 1960        101.60000           62.15
## 92                  Kyrgyz Republic 1960               NA           56.09
## 93                              Lao 1960        155.00000           42.13
## 94                           Latvia 1960         35.00000           70.37
## 95                          Lebanon 1960         57.60000           62.90
## 96                          Lesotho 1960        143.30000           47.02
## 97                          Liberia 1960        212.00000           35.24
## 98                            Libya 1960        164.50000           44.59
## 99                        Lithuania 1960         52.00000           70.33
## 100                      Luxembourg 1960         33.00000           68.99
## 101                    Macao, China 1960               NA           64.93
## 102                  Macedonia, FYR 1960        120.00000           60.85
## 103                      Madagascar 1960        112.00000           41.96
## 104                          Malawi 1960        218.20000           38.51
## 105                        Malaysia 1960         67.40000           59.89
## 106                        Maldives 1960               NA           38.07
## 107                            Mali 1960        237.40000           29.61
## 108                           Malta 1960         36.40000           68.32
## 109                      Mauritania 1960        135.00000           43.91
## 110                       Mauritius 1960         67.80000           58.74
## 111                          Mexico 1960        100.60000           57.34
## 112           Micronesia, Fed. Sts. 1960               NA           56.82
## 113                         Moldova 1960               NA           62.22
## 114                        Mongolia 1960               NA           49.20
## 115                      Montenegro 1960               NA           63.86
## 116                         Morocco 1960        145.00000           49.64
## 117                      Mozambique 1960        183.00000           38.17
## 118                         Namibia 1960        102.00000           47.07
## 119                           Nepal 1960        219.60000           39.80
## 120                     Netherlands 1960         16.40000           73.35
## 121                   New Caledonia 1960               NA           56.38
## 122                     New Zealand 1960         22.60000           71.28
## 123                       Nicaragua 1960        134.00000           50.69
## 124                           Niger 1960               NA           36.82
## 125                         Nigeria 1960        165.00000           40.39
## 126                          Norway 1960         18.40000           73.66
## 127                            Oman 1960        164.00000           44.64
## 128                        Pakistan 1960        192.00000           46.79
## 129                          Panama 1960         66.90000           61.62
## 130                Papua New Guinea 1960        134.60000           38.60
## 131                        Paraguay 1960         62.60000           66.35
## 132                            Peru 1960        135.90000           48.95
## 133                     Philippines 1960         67.90000           58.82
## 134                          Poland 1960         57.80000           67.92
## 135                        Portugal 1960         84.60000           64.23
## 136                     Puerto Rico 1960               NA           68.58
## 137                           Qatar 1960         94.00000           60.82
## 138                         Romania 1960         69.00000           65.92
## 139                          Russia 1960               NA           68.61
## 140                          Rwanda 1960        127.90000           43.07
## 141                       St. Lucia 1960               NA           56.97
## 142  St. Vincent and the Grenadines 1960               NA           57.85
## 143                           Samoa 1960         92.00000           51.45
## 144                    Saudi Arabia 1960        150.00000           47.62
## 145                         Senegal 1960        126.30000           38.46
## 146                          Serbia 1960               NA           63.33
## 147                      Seychelles 1960         73.60000           60.42
## 148                    Sierra Leone 1960        223.60000           36.07
## 149                       Singapore 1960         35.50000           65.02
## 150                 Slovak Republic 1960         33.00000           70.42
## 151                        Slovenia 1960         37.00000           68.62
## 152                 Solomon Islands 1960        131.80000           50.55
## 153                    South Africa 1960               NA           49.01
## 154                           Spain 1960         47.70000           69.23
## 155                       Sri Lanka 1960         72.70000           59.76
## 156                           Sudan 1960        107.40000           49.54
## 157                        Suriname 1960               NA           60.58
## 158                       Swaziland 1960        141.70000           44.78
## 159                          Sweden 1960         16.30000           73.01
## 160                     Switzerland 1960         21.60000           71.46
## 161                           Syria 1960        121.80000           52.87
## 162                      Tajikistan 1960               NA           57.10
## 163                        Tanzania 1960        144.30000           45.57
## 164                        Thailand 1960        102.20000           55.46
## 165                     Timor-Leste 1960               NA           37.74
## 166                            Togo 1960        162.40000           41.06
## 167                           Tonga 1960               NA           61.20
## 168             Trinidad and Tobago 1960         56.60000           63.07
## 169                         Tunisia 1960        173.40000           43.20
## 170                          Turkey 1960        166.00000           46.91
## 171                    Turkmenistan 1960               NA           54.91
## 172                          Uganda 1960        132.30000           45.27
## 173                         Ukraine 1960               NA           70.88
## 174            United Arab Emirates 1960        137.30000           51.85
## 175                  United Kingdom 1960         22.90000           71.02
## 176                   United States 1960         25.90000           69.91
## 177                         Uruguay 1960         57.70000           67.95
## 178                      Uzbekistan 1960               NA           59.35
## 179                         Vanuatu 1960        106.70000           45.97
## 180                       Venezuela 1960         59.90000           60.08
## 181              West Bank and Gaza 1960               NA           50.82
## 182                         Vietnam 1960         75.60000           58.52
## 183                           Yemen 1960        225.00000           32.64
## 184                          Zambia 1960        123.20000           48.34
## 185                        Zimbabwe 1960         92.60000           53.11
## 186                         Albania 1961        110.80000           63.92
## 187                         Algeria 1961        148.10000           48.02
## 188                          Angola 1961               NA           36.53
## 189             Antigua and Barbuda 1961               NA           63.46
## 190                       Argentina 1961         59.73000           65.53
## 191                         Armenia 1961               NA           67.33
## 192                           Aruba 1961               NA           66.07
## 193                       Australia 1961         20.00000           71.14
## 194                         Austria 1961         35.00000           69.72
## 195                      Azerbaijan 1961               NA           61.76
## 196                         Bahamas 1961               NA           62.29
## 197                         Bahrain 1961        123.80000           52.99
## 198                      Bangladesh 1961        171.70000           46.73
## 199                        Barbados 1961         65.00000           62.31
## 200                         Belarus 1961               NA           72.30
## 201                         Belgium 1961         28.10000           70.46
## 202                          Belize 1961               NA           60.64
## 203                           Benin 1961        183.90000           38.80
## 204                          Bhutan 1961               NA           36.49
## 205                         Bolivia 1961        170.50000           44.14
## 206          Bosnia and Herzegovina 1961               NA           63.34
## 207                        Botswana 1961        112.20000           50.70
## 208                          Brazil 1961        126.10000           55.78
## 209                          Brunei 1961               NA           63.11
## 210                        Bulgaria 1961               NA           70.26
## 211                    Burkina Faso 1961        159.40000           35.72
## 212                         Burundi 1961        144.80000           40.85
## 213                        Cambodia 1961               NA           42.47
## 214                        Cameroon 1961        163.30000           44.00
## 215                          Canada 1961         27.00000           71.22
## 216                      Cape Verde 1961               NA           50.27
## 217        Central African Republic 1961        162.90000           37.89
## 218                            Chad 1961               NA           41.35
## 219                           Chile 1961        121.10000           57.23
## 220                           China 1961        161.00000           32.95
## 221                        Colombia 1961         87.60000           58.63
## 222                         Comoros 1961               NA           44.47
## 223                Congo, Dem. Rep. 1961               NA           44.25
## 224                     Congo, Rep. 1961        108.40000           48.88
## 225                      Costa Rica 1961         83.56000           62.56
## 226                   Cote d'Ivoire 1961        203.00000           38.74
## 227                         Croatia 1961               NA           65.26
## 228                            Cuba 1961               NA           64.47
## 229                          Cyprus 1961               NA           70.06
## 230                  Czech Republic 1961               NA           70.77
## 231                         Denmark 1961         20.80000           72.55
## 232                        Djibouti 1961               NA           46.28
## 233              Dominican Republic 1961        101.00000           54.17
## 234                         Ecuador 1961        118.20000           54.77
## 235                           Egypt 1961        202.70000           48.89
## 236                     El Salvador 1961        123.90000           52.77
## 237               Equatorial Guinea 1961               NA           38.04
## 238                         Eritrea 1961               NA           39.35
## 239                         Estonia 1961               NA           69.74
## 240                        Ethiopia 1961               NA           38.35
## 241                            Fiji 1961         52.10000           56.12
## 242                         Finland 1961         20.60000           69.07
## 243                          France 1961         22.40000           71.07
## 244                French Polynesia 1961               NA           56.71
## 245                           Gabon 1961               NA           39.15
## 246                          Gambia 1961        146.10000           36.16
## 247                         Georgia 1961               NA           63.90
## 248                         Germany 1961               NA           69.85
## 249                           Ghana 1961        123.80000           46.80
## 250                          Greece 1961         47.30000           68.80
## 251                       Greenland 1961               NA           61.85
## 252                         Grenada 1961               NA           61.05
## 253                       Guatemala 1961        143.30000           47.12
## 254                          Guinea 1961        210.50000           35.95
## 255                   Guinea-Bissau 1961               NA           43.39
## 256                          Guyana 1961         65.10000           59.24
## 257                           Haiti 1961        191.50000           42.68
## 258                        Honduras 1961        136.60000           48.47
## 259                Hong Kong, China 1961               NA           68.01
## 260                         Hungary 1961         51.00000           69.06
## 261                         Iceland 1961         17.20000           73.60
## 262                           India 1961        162.50000           41.99
## 263                       Indonesia 1961        144.80000           45.83
## 264                            Iran 1961        183.85000           46.61
## 265                            Iraq 1961        124.70000           48.11
## 266                         Ireland 1961         29.20000           70.24
## 267                          Israel 1961               NA           68.85
## 268                           Italy 1961         42.70000           69.82
## 269                         Jamaica 1961         59.80000           66.57
## 270                           Japan 1961         27.90000           68.43
## 271                          Jordan 1961        101.90000           54.12
## 272                      Kazakhstan 1961               NA           59.38
## 273                           Kenya 1961        114.00000           48.13
## 274                        Kiribati 1961               NA           46.24
## 275                     South Korea 1961         76.10000           53.75
## 276                          Kuwait 1961         95.20000           62.98
## 277                 Kyrgyz Republic 1961               NA           56.54
## 278                             Lao 1961               NA           42.38
## 279                          Latvia 1961               NA           70.60
## 280                         Lebanon 1961         56.10000           63.19
## 281                         Lesotho 1961        142.30000           47.54
## 282                         Liberia 1961        212.10000           35.54
## 283                           Libya 1961        156.10000           46.28
## 284                       Lithuania 1961               NA           70.52
## 285                      Luxembourg 1961               NA           69.49
## 286                    Macao, China 1961               NA           65.42
## 287                  Macedonia, FYR 1961               NA           61.49
## 288                      Madagascar 1961               NA           42.54
## 289                          Malawi 1961        216.40000           38.76
## 290                        Malaysia 1961         64.20000           60.48
## 291                        Maldives 1961               NA           38.82
## 292                            Mali 1961        231.50000           29.83
## 293                           Malta 1961         34.90000           68.67
## 294                      Mauritania 1961        131.90000           44.62
## 295                       Mauritius 1961         66.30000           59.75
## 296                          Mexico 1961         97.70000           57.95
## 297           Micronesia, Fed. Sts. 1961               NA           57.18
## 298                         Moldova 1961               NA           62.61
## 299                        Mongolia 1961               NA           50.15
## 300                      Montenegro 1961               NA           64.54
## 301                         Morocco 1961        142.70000           50.11
## 302                      Mozambique 1961               NA           38.79
## 303                         Namibia 1961               NA           47.70
## 304                           Nepal 1961        216.70000           40.26
## 305                     Netherlands 1961         16.10000           73.54
## 306                   New Caledonia 1961               NA           57.06
## 307                     New Zealand 1961         21.70000           71.00
## 308                       Nicaragua 1961        132.50000           51.53
## 309                           Niger 1961               NA           36.97
## 310                         Nigeria 1961               NA           41.00
## 311                          Norway 1961         18.00000           73.67
## 312                            Oman 1961        237.20000           45.57
## 313                        Pakistan 1961        184.80000           47.73
## 314                          Panama 1961         65.30000           62.17
## 315                Papua New Guinea 1961        130.70000           39.20
## 316                        Paraguay 1961         62.00000           66.70
## 317                            Peru 1961        132.60000           49.56
## 318                     Philippines 1961         65.90000           59.17
## 319                          Poland 1961         53.00000           68.04
## 320                        Portugal 1961         82.30000           62.85
## 321                     Puerto Rico 1961               NA           68.80
## 322                           Qatar 1961               NA           61.57
## 323                         Romania 1961               NA           66.70
## 324                          Russia 1961               NA           68.85
## 325                          Rwanda 1961        125.30000           43.41
## 326                       St. Lucia 1961               NA           57.75
## 327  St. Vincent and the Grenadines 1961               NA           58.96
## 328                           Samoa 1961               NA           52.04
## 329                    Saudi Arabia 1961               NA           48.22
## 330                         Senegal 1961        126.00000           38.63
## 331                          Serbia 1961               NA           63.88
## 332                      Seychelles 1961         72.30000           61.03
## 333                    Sierra Leone 1961        220.50000           36.57
## 334                       Singapore 1961         32.90000           65.41
## 335                 Slovak Republic 1961               NA           70.86
## 336                        Slovenia 1961               NA           68.82
## 337                 Solomon Islands 1961        125.40000           51.12
## 338                    South Africa 1961               NA           49.40
## 339                           Spain 1961         44.40000           69.62
## 340                       Sri Lanka 1961         69.80000           60.18
## 341                           Sudan 1961        105.70000           50.04
## 342                        Suriname 1961               NA           61.00
## 343                       Swaziland 1961        140.10000           45.10
## 344                          Sweden 1961         16.00000           73.47
## 345                     Switzerland 1961         21.20000           71.79
## 346                           Syria 1961        116.00000           53.43
## 347                      Tajikistan 1961               NA           57.57
## 348                        Tanzania 1961        143.00000           45.91
## 349                        Thailand 1961         99.00000           56.01
## 350                     Timor-Leste 1961               NA           38.45
## 351                            Togo 1961        159.40000           41.74
## 352                           Tonga 1961               NA           61.56
## 353             Trinidad and Tobago 1961         54.70000           63.68
## 354                         Tunisia 1961        187.50000           43.89
## 355                          Turkey 1961        161.60000           47.71
## 356                    Turkmenistan 1961               NA           55.36
## 357                          Uganda 1961        129.60000           45.91
## 358                         Ukraine 1961               NA           71.15
## 359            United Arab Emirates 1961        130.50000           52.89
## 360                  United Kingdom 1961         22.50000           70.77
## 361                   United States 1961         25.40000           70.32
## 362                         Uruguay 1961         56.40000           68.19
## 363                      Uzbekistan 1961               NA           59.80
## 364                         Vanuatu 1961        104.10000           46.55
## 365                       Venezuela 1961         58.10000           60.69
## 366              West Bank and Gaza 1961               NA           51.43
## 367                         Vietnam 1961         72.60000           59.17
## 368                           Yemen 1961        269.20000           33.58
## 369                          Zambia 1961        120.90000           48.89
## 370                        Zimbabwe 1961         90.10000           53.55
## 371                         Albania 1962        106.50000           64.84
## 372                         Algeria 1962        148.20000           48.55
## 373                          Angola 1962               NA           37.08
## 374             Antigua and Barbuda 1962               NA           63.93
## 375                       Argentina 1962         59.59000           65.64
## 376                         Armenia 1962               NA           67.82
## 377                           Aruba 1962               NA           66.44
## 378                       Australia 1962         19.50000           70.91
## 379                         Austria 1962         32.90000           69.51
## 380                      Azerbaijan 1962               NA           62.20
## 381                         Bahamas 1962               NA           62.58
## 382                         Bahrain 1962        114.10000           54.33
## 383                      Bangladesh 1962        167.60000           47.28
## 384                        Barbados 1962         61.20000           62.79
## 385                         Belarus 1962               NA           71.01
## 386                         Belgium 1962         27.00000           70.19
## 387                          Belize 1962               NA           61.20
## 388                           Benin 1962        180.60000           39.32
## 389                          Bhutan 1962               NA           37.04
## 390                         Bolivia 1962        167.70000           44.50
## 391          Bosnia and Herzegovina 1962               NA           64.07
## 392                        Botswana 1962        109.00000           51.02
## 393                          Brazil 1962        122.90000           56.27
## 394                          Brunei 1962               NA           63.67
## 395                        Bulgaria 1962               NA           69.55
## 396                    Burkina Faso 1962        157.50000           36.23
## 397                         Burundi 1962        144.60000           41.13
## 398                        Cambodia 1962               NA           42.70
## 399                        Cameroon 1962        160.50000           44.53
## 400                          Canada 1962         26.00000           71.25
## 401                      Cape Verde 1962               NA           50.43
## 402        Central African Republic 1962        160.40000           38.36
## 403                            Chad 1962               NA           41.76
## 404                           Chile 1962        116.70000           57.63
## 405                           China 1962        110.00000           43.29
## 406                        Colombia 1962         85.90000           59.18
## 407                         Comoros 1962               NA           44.89
## 408                Congo, Dem. Rep. 1962               NA           44.61
## 409                     Congo, Rep. 1962        106.10000           49.47
## 410                      Costa Rica 1962         80.64000           63.13
## 411                   Cote d'Ivoire 1962        197.70000           39.46
## 412                         Croatia 1962               NA           65.66
## 413                            Cuba 1962               NA           65.09
## 414                          Cyprus 1962               NA           70.38
## 415                  Czech Republic 1962               NA           70.04
## 416                         Denmark 1962         20.20000           72.43
## 417                        Djibouti 1962               NA           46.79
## 418              Dominican Republic 1962         99.60000           54.97
## 419                         Ecuador 1962        115.30000           55.42
## 420                           Egypt 1962        195.90000           49.43
## 421                     El Salvador 1962        121.60000           53.50
## 422               Equatorial Guinea 1962               NA           38.38
## 423                         Eritrea 1962               NA           39.69
## 424                         Estonia 1962               NA           69.93
## 425                        Ethiopia 1962               NA           38.94
## 426                            Fiji 1962         50.30000           56.54
## 427                         Finland 1962         19.50000           68.78
## 428                          France 1962         21.30000           70.61
## 429                French Polynesia 1962               NA           57.09
## 430                           Gabon 1962               NA           39.56
## 431                          Gambia 1962        143.80000           36.68
## 432                         Georgia 1962               NA           64.31
## 433                         Germany 1962               NA           70.01
## 434                           Ghana 1962        122.70000           47.25
## 435                          Greece 1962         46.20000           69.14
## 436                       Greenland 1962               NA           62.22
## 437                         Grenada 1962               NA           61.49
## 438                       Guatemala 1962        140.70000           47.76
## 439                          Guinea 1962        209.10000           36.17
## 440                   Guinea-Bissau 1962               NA           43.64
## 441                          Guyana 1962         62.90000           59.41
## 442                           Haiti 1962        188.30000           43.26
## 443                        Honduras 1962        132.40000           49.21
## 444                Hong Kong, China 1962               NA           68.55
## 445                         Hungary 1962         49.00000           68.00
## 446                         Iceland 1962         16.90000           73.82
## 447                           India 1962        160.10000           42.72
## 448                       Indonesia 1962        141.20000           46.65
## 449                            Iran 1962        176.37000           47.22
## 450                            Iraq 1962        118.30000           49.24
## 451                         Ireland 1962         28.00000           70.57
## 452                          Israel 1962               NA           69.13
## 453                           Italy 1962         41.00000           69.21
## 454                         Jamaica 1962         57.70000           67.17
## 455                           Japan 1962         25.50000           68.71
## 456                          Jordan 1962         96.60000           54.94
## 457                      Kazakhstan 1962               NA           59.85
## 458                           Kenya 1962        109.90000           48.82
## 459                        Kiribati 1962               NA           46.64
## 460                     South Korea 1962         72.40000           54.51
## 461                          Kuwait 1962         89.00000           63.77
## 462                 Kyrgyz Republic 1962               NA           56.99
## 463                             Lao 1962               NA           42.64
## 464                          Latvia 1962               NA           69.97
## 465                         Lebanon 1962         54.70000           63.47
## 466                         Lesotho 1962        141.70000           47.97
## 467                         Liberia 1962        211.40000           35.88
## 468                           Libya 1962        148.40000           48.00
## 469                       Lithuania 1962               NA           69.46
## 470                      Luxembourg 1962               NA           68.59
## 471                    Macao, China 1962               NA           65.90
## 472                  Macedonia, FYR 1962               NA           62.11
## 473                      Madagascar 1962               NA           43.12
## 474                          Malawi 1962        214.60000           39.02
## 475                        Malaysia 1962         61.10000           61.07
## 476                        Maldives 1962               NA           39.64
## 477                            Mali 1962        225.20000           30.08
## 478                           Malta 1962         33.70000           69.02
## 479                      Mauritania 1962        128.90000           45.31
## 480                       Mauritius 1962         63.60000           60.64
## 481                          Mexico 1962         94.90000           58.49
## 482           Micronesia, Fed. Sts. 1962               NA           57.54
## 483                         Moldova 1962               NA           62.99
## 484                        Mongolia 1962               NA           51.08
## 485                      Montenegro 1962               NA           65.21
## 486                         Morocco 1962        140.40000           50.60
## 487                      Mozambique 1962               NA           39.40
## 488                         Namibia 1962               NA           48.31
## 489                           Nepal 1962        213.30000           40.74
## 490                     Netherlands 1962         15.60000           73.21
## 491                   New Caledonia 1962               NA           57.72
## 492                     New Zealand 1962         20.90000           71.26
## 493                       Nicaragua 1962        131.10000           52.36
## 494                           Niger 1962               NA           37.10
## 495                         Nigeria 1962        182.60000           41.61
## 496                          Norway 1962         17.50000           73.55
## 497                            Oman 1962        226.00000           46.47
## 498                        Pakistan 1962        178.00000           48.63
## 499                          Panama 1962         63.60000           62.71
## 500                Papua New Guinea 1962        126.90000           39.87
## 501                        Paraguay 1962         61.40000           67.03
## 502                            Peru 1962        129.10000           50.14
## 503                     Philippines 1962         64.20000           59.53
## 504                          Poland 1962         49.60000           67.71
## 505                        Portugal 1962         78.70000           64.37
## 506                     Puerto Rico 1962               NA           69.00
## 507                           Qatar 1962               NA           62.31
## 508                         Romania 1962               NA           67.32
## 509                          Russia 1962               NA           68.51
## 510                          Rwanda 1962        123.40000           43.74
## 511                       St. Lucia 1962               NA           58.47
## 512  St. Vincent and the Grenadines 1962               NA           59.99
## 513                           Samoa 1962               NA           52.62
## 514                    Saudi Arabia 1962               NA           48.84
## 515                         Senegal 1962        126.00000           38.72
## 516                          Serbia 1962               NA           64.44
## 517                      Seychelles 1962         70.90000           61.59
## 518                    Sierra Leone 1962        217.50000           37.06
## 519                       Singapore 1962         30.80000           65.72
## 520                 Slovak Republic 1962               NA           70.40
## 521                        Slovenia 1962               NA           68.98
## 522                 Solomon Islands 1962        119.30000           51.69
## 523                    South Africa 1962               NA           49.78
## 524                           Spain 1962         41.70000           69.65
## 525                       Sri Lanka 1962         67.10000           60.61
## 526                           Sudan 1962        104.10000           50.52
## 527                        Suriname 1962               NA           61.41
## 528                       Swaziland 1962        138.10000           45.42
## 529                          Sweden 1962         15.60000           73.34
## 530                     Switzerland 1962         20.70000           71.35
## 531                           Syria 1962        110.60000           53.98
## 532                      Tajikistan 1962               NA           58.03
## 533                        Tanzania 1962        141.90000           46.26
## 534                        Thailand 1962         95.80000           56.51
## 535                     Timor-Leste 1962               NA           39.15
## 536                            Togo 1962        156.40000           42.42
## 537                           Tonga 1962               NA           61.91
## 538             Trinidad and Tobago 1962         53.10000           64.20
## 539                         Tunisia 1962        178.70000           44.65
## 540                          Turkey 1962        157.10000           48.52
## 541                    Turkmenistan 1962               NA           55.82
## 542                          Uganda 1962        127.30000           46.56
## 543                         Ukraine 1962               NA           70.56
## 544            United Arab Emirates 1962        124.00000           53.91
## 545                  United Kingdom 1962         22.00000           70.84
## 546                   United States 1962         24.90000           70.21
## 547                         Uruguay 1962         54.90000           68.39
## 548                      Uzbekistan 1962               NA           60.25
## 549                         Vanuatu 1962        101.60000           47.14
## 550                       Venezuela 1962         56.60000           61.30
## 551              West Bank and Gaza 1962               NA           52.08
## 552                         Vietnam 1962         69.90000           59.82
## 553                           Yemen 1962        263.70000           34.52
## 554                          Zambia 1962        118.70000           49.42
## 555                        Zimbabwe 1962         87.60000           53.99
## 556                         Albania 1963        101.80000           65.60
## 557                         Algeria 1963        148.40000           49.07
## 558                          Angola 1963               NA           37.63
## 559             Antigua and Barbuda 1963               NA           64.38
## 560                       Argentina 1963         59.39000           65.74
## 561                         Armenia 1963               NA           68.30
## 562                           Aruba 1963               NA           66.79
## 563                       Australia 1963         19.20000           70.97
## 564                         Austria 1963         31.20000           69.64
## 565                      Azerbaijan 1963               NA           62.62
## 566                         Bahamas 1963               NA           62.85
## 567                         Bahrain 1963        105.10000           55.64
## 568                      Bangladesh 1963        163.70000           47.81
## 569                        Barbados 1963         57.60000           63.27
## 570                         Belarus 1963               NA           71.66
## 571                         Belgium 1963         26.00000           70.00
## 572                          Belize 1963               NA           61.78
## 573                           Benin 1963        177.10000           39.85
## 574                          Bhutan 1963               NA           37.57
## 575                         Bolivia 1963        165.00000           44.88
## 576          Bosnia and Herzegovina 1963               NA           64.78
## 577                        Botswana 1963        105.80000           51.35
## 578                          Brazil 1963        119.90000           56.75
## 579                          Brunei 1963               NA           64.21
## 580                        Bulgaria 1963         40.60000           70.38
## 581                    Burkina Faso 1963        155.80000           36.75
## 582                         Burundi 1963        144.30000           41.41
## 583                        Cambodia 1963               NA           42.95
## 584                        Cameroon 1963        158.10000           45.07
## 585                          Canada 1963         25.10000           71.26
## 586                      Cape Verde 1963               NA           50.59
## 587        Central African Republic 1963        157.60000           38.85
## 588                            Chad 1963               NA           42.17
## 589                           Chile 1963        111.90000           58.07
## 590                           China 1963               NA           50.64
## 591                        Colombia 1963         84.30000           59.71
## 592                         Comoros 1963               NA           45.32
## 593                Congo, Dem. Rep. 1963               NA           44.98
## 594                     Congo, Rep. 1963        104.20000           50.04
## 595                      Costa Rica 1963         77.78000           63.70
## 596                   Cote d'Ivoire 1963        192.80000           40.17
## 597                         Croatia 1963               NA           66.05
## 598                            Cuba 1963         41.80000           65.71
## 599                          Cyprus 1963               NA           70.71
## 600                  Czech Republic 1963               NA           70.56
## 601                         Denmark 1963         19.50000           72.52
## 602                        Djibouti 1963               NA           47.30
## 603              Dominican Republic 1963         98.10000           55.75
## 604                         Ecuador 1963        112.30000           56.01
## 605                           Egypt 1963        189.40000           49.94
## 606                     El Salvador 1963        119.40000           54.18
## 607               Equatorial Guinea 1963               NA           38.73
## 608                         Eritrea 1963               NA           40.04
## 609                         Estonia 1963               NA           69.99
## 610                        Ethiopia 1963               NA           39.49
## 611                            Fiji 1963         48.80000           56.94
## 612                         Finland 1963         18.40000           69.19
## 613                          France 1963         20.30000           70.46
## 614                French Polynesia 1963               NA           57.47
## 615                           Gabon 1963               NA           40.07
## 616                          Gambia 1963        141.50000           37.26
## 617                         Georgia 1963               NA           64.71
## 618                         Germany 1963               NA           70.10
## 619                           Ghana 1963        121.80000           47.66
## 620                          Greece 1963         45.00000           69.44
## 621                       Greenland 1963               NA           62.59
## 622                         Grenada 1963               NA           61.93
## 623                       Guatemala 1963        138.00000           48.40
## 624                          Guinea 1963        207.60000           36.37
## 625                   Guinea-Bissau 1963               NA           43.89
## 626                          Guyana 1963         61.00000           59.58
## 627                           Haiti 1963        185.20000           43.82
## 628                        Honduras 1963        128.40000           49.94
## 629                Hong Kong, China 1963               NA           69.05
## 630                         Hungary 1963         47.30000           69.02
## 631                         Iceland 1963         16.40000           73.13
## 632                           India 1963        157.60000           43.46
## 633                       Indonesia 1963        137.70000           47.45
## 634                            Iran 1963        169.26000           47.83
## 635                            Iraq 1963        112.50000           50.36
## 636                         Ireland 1963         27.00000           70.85
## 637                          Israel 1963               NA           69.41
## 638                           Italy 1963         39.20000           69.32
## 639                         Jamaica 1963         55.80000           67.74
## 640                           Japan 1963         23.20000           69.79
## 641                          Jordan 1963         91.60000           55.75
## 642                      Kazakhstan 1963               NA           60.31
## 643                           Kenya 1963        106.50000           49.48
## 644                        Kiribati 1963        122.20000           47.03
## 645                     South Korea 1963         68.80000           55.27
## 646                          Kuwait 1963         83.30000           64.53
## 647                 Kyrgyz Republic 1963               NA           57.44
## 648                             Lao 1963               NA           42.89
## 649                          Latvia 1963               NA           70.36
## 650                         Lebanon 1963         53.40000           63.74
## 651                         Lesotho 1963        141.50000           48.32
## 652                         Liberia 1963        210.40000           36.28
## 653                           Libya 1963        140.90000           49.69
## 654                       Lithuania 1963               NA           70.64
## 655                      Luxembourg 1963               NA           68.80
## 656                    Macao, China 1963               NA           66.36
## 657                  Macedonia, FYR 1963               NA           62.72
## 658                      Madagascar 1963               NA           43.70
## 659                          Malawi 1963        212.90000           39.25
## 660                        Malaysia 1963         58.30000           61.63
## 661                        Maldives 1963        217.10000           40.54
## 662                            Mali 1963        216.50000           30.40
## 663                           Malta 1963         32.60000           69.37
## 664                      Mauritania 1963        126.00000           45.96
## 665                       Mauritius 1963         59.90000           61.38
## 666                          Mexico 1963         90.80000           58.96
## 667           Micronesia, Fed. Sts. 1963               NA           57.90
## 668                         Moldova 1963               NA           63.38
## 669                        Mongolia 1963               NA           51.94
## 670                      Montenegro 1963               NA           65.86
## 671                         Morocco 1963        138.00000           51.09
## 672                      Mozambique 1963               NA           39.98
## 673                         Namibia 1963               NA           48.90
## 674                           Nepal 1963        209.40000           41.21
## 675                     Netherlands 1963         15.30000           73.33
## 676                   New Caledonia 1963               NA           58.36
## 677                     New Zealand 1963         20.00000           71.33
## 678                       Nicaragua 1963        129.70000           53.19
## 679                           Niger 1963               NA           37.24
## 680                         Nigeria 1963        181.40000           42.19
## 681                          Norway 1963         17.10000           73.20
## 682                            Oman 1963        218.70000           47.37
## 683                        Pakistan 1963        171.70000           49.47
## 684                          Panama 1963         61.90000           63.22
## 685                Papua New Guinea 1963        123.20000           40.60
## 686                        Paraguay 1963         60.90000           67.33
## 687                            Peru 1963        125.40000           50.70
## 688                     Philippines 1963         62.70000           59.87
## 689                          Poland 1963         46.80000           68.64
## 690                        Portugal 1963         74.40000           65.00
## 691                     Puerto Rico 1963               NA           69.21
## 692                           Qatar 1963               NA           63.06
## 693                         Romania 1963               NA           67.74
## 694                          Russia 1963               NA           68.98
## 695                          Rwanda 1963        122.40000           44.05
## 696                       St. Lucia 1963               NA           59.11
## 697  St. Vincent and the Grenadines 1963               NA           60.93
## 698                           Samoa 1963               NA           53.21
## 699                    Saudi Arabia 1963               NA           49.48
## 700                         Senegal 1963        125.90000           38.76
## 701                          Serbia 1963               NA           64.99
## 702                      Seychelles 1963         69.50000           62.08
## 703                    Sierra Leone 1963        214.20000           37.57
## 704                       Singapore 1963         29.30000           65.97
## 705                 Slovak Republic 1963               NA           70.79
## 706                        Slovenia 1963               NA           69.08
## 707                 Solomon Islands 1963        113.70000           52.27
## 708                    South Africa 1963               NA           50.14
## 709                           Spain 1963         39.30000           69.81
## 710                       Sri Lanka 1963         64.60000           61.06
## 711                           Sudan 1963        102.60000           50.99
## 712                        Suriname 1963               NA           61.81
## 713                       Swaziland 1963        136.00000           45.73
## 714                          Sweden 1963         15.00000           73.53
## 715                     Switzerland 1963         20.10000           71.34
## 716                           Syria 1963        105.60000           54.56
## 717                      Tajikistan 1963               NA           58.51
## 718                        Tanzania 1963        140.50000           46.62
## 719                        Thailand 1963         92.70000           56.98
## 720                     Timor-Leste 1963               NA           39.85
## 721                            Togo 1963        153.50000           43.10
## 722                           Tonga 1963         60.40000           62.26
## 723             Trinidad and Tobago 1963         51.50000           64.63
## 724                         Tunisia 1963        170.90000           45.47
## 725                          Turkey 1963        152.60000           49.35
## 726                    Turkmenistan 1963               NA           56.27
## 727                          Uganda 1963        125.00000           47.22
## 728                         Ukraine 1963               NA           71.18
## 729            United Arab Emirates 1963        117.40000           54.91
## 730                  United Kingdom 1963         21.40000           70.74
## 731                   United States 1963         24.40000           70.04
## 732                         Uruguay 1963         53.60000           68.55
## 733                      Uzbekistan 1963               NA           60.70
## 734                         Vanuatu 1963         98.80000           47.71
## 735                       Venezuela 1963         55.30000           61.91
## 736              West Bank and Gaza 1963               NA           52.75
## 737                         Vietnam 1963         67.30000           60.42
## 738                           Yemen 1963        276.90000           35.45
## 739                          Zambia 1963        116.70000           49.94
## 740                        Zimbabwe 1963         85.30000           54.42
## 741                         Albania 1964         97.90000           66.18
## 742                         Algeria 1964        148.70000           49.58
## 743                          Angola 1964               NA           38.18
## 744             Antigua and Barbuda 1964               NA           64.81
## 745                       Argentina 1964         59.25000           65.84
## 746                         Armenia 1964               NA           68.78
## 747                           Aruba 1964               NA           67.11
## 748                       Australia 1964         18.80000           70.63
## 749                         Austria 1964         29.70000           70.13
## 750                      Azerbaijan 1964               NA           63.06
## 751                         Bahamas 1964               NA           63.13
## 752                         Bahrain 1964         96.60000           56.90
## 753                      Bangladesh 1964        160.30000           48.29
## 754                        Barbados 1964         54.40000           63.74
## 755                         Belarus 1964               NA           73.17
## 756                         Belgium 1964         25.00000           70.66
## 757                          Belize 1964               NA           62.36
## 758                           Benin 1964        173.60000           40.38
## 759                          Bhutan 1964               NA           38.12
## 760                         Bolivia 1964        162.20000           45.24
## 761          Bosnia and Herzegovina 1964               NA           65.46
## 762                        Botswana 1964        102.80000           51.67
## 763                          Brazil 1964        117.10000           57.21
## 764                          Brunei 1964               NA           64.72
## 765                        Bulgaria 1964         39.90000           71.18
## 766                    Burkina Faso 1964        154.30000           37.27
## 767                         Burundi 1964        142.80000           41.69
## 768                        Cambodia 1964               NA           43.20
## 769                        Cameroon 1964        155.50000           45.59
## 770                          Canada 1964         24.00000           71.64
## 771                      Cape Verde 1964               NA           50.77
## 772        Central African Republic 1964        154.70000           39.36
## 773                            Chad 1964               NA           42.58
## 774                           Chile 1964        105.10000           58.54
## 775                           China 1964               NA           52.00
## 776                        Colombia 1964         82.60000           60.21
## 777                         Comoros 1964               NA           45.75
## 778                Congo, Dem. Rep. 1964               NA           45.36
## 779                     Congo, Rep. 1964        102.10000           50.55
## 780                      Costa Rica 1964         75.10000           64.26
## 781                   Cote d'Ivoire 1964        188.00000           40.84
## 782                         Croatia 1964               NA           66.43
## 783                            Cuba 1964         40.40000           66.35
## 784                          Cyprus 1964               NA           71.02
## 785                  Czech Republic 1964               NA           70.73
## 786                         Denmark 1964         18.70000           72.61
## 787                        Djibouti 1964               NA           47.80
## 788              Dominican Republic 1964         96.40000           56.52
## 789                         Ecuador 1964        109.60000           56.53
## 790                           Egypt 1964        183.40000           50.42
## 791                     El Salvador 1964        117.40000           54.81
## 792               Equatorial Guinea 1964               NA           39.08
## 793                         Eritrea 1964               NA           40.41
## 794                         Estonia 1964               NA           70.74
## 795                        Ethiopia 1964               NA           39.36
## 796                            Fiji 1964         47.50000           57.35
## 797                         Finland 1964         17.40000           69.40
## 798                          France 1964         19.40000           71.43
## 799                French Polynesia 1964               NA           57.85
## 800                           Gabon 1964               NA           40.70
## 801                          Gambia 1964        139.30000           37.91
## 802                         Georgia 1964               NA           65.11
## 803                         Germany 1964               NA           70.66
## 804                           Ghana 1964        121.20000           48.07
## 805                          Greece 1964         43.60000           69.69
## 806                       Greenland 1964               NA           62.97
## 807                         Grenada 1964               NA           62.35
## 808                       Guatemala 1964        135.30000           49.05
## 809                          Guinea 1964        206.10000           36.57
## 810                   Guinea-Bissau 1964               NA           44.15
## 811                          Guyana 1964         59.50000           59.75
## 812                           Haiti 1964        182.20000           44.38
## 813                        Honduras 1964        124.50000           50.65
## 814                Hong Kong, China 1964               NA           69.52
## 815                         Hungary 1964         45.80000           69.52
## 816                         Iceland 1964         16.00000           73.72
## 817                           India 1964        155.30000           44.23
## 818                       Indonesia 1964        134.10000           48.24
## 819                            Iran 1964        162.50000           48.43
## 820                            Iraq 1964        107.10000           51.46
## 821                         Ireland 1964         26.00000           71.12
## 822                          Israel 1964               NA           69.68
## 823                           Italy 1964         37.30000           70.37
## 824                         Jamaica 1964         54.00000           68.25
## 825                           Japan 1964         21.00000           70.26
## 826                          Jordan 1964         87.10000           56.55
## 827                      Kazakhstan 1964               NA           60.79
## 828                           Kenya 1964        103.60000           50.13
## 829                        Kiribati 1964        117.80000           47.44
## 830                     South Korea 1964         65.30000           56.04
## 831                          Kuwait 1964         77.80000           65.24
## 832                 Kyrgyz Republic 1964               NA           57.90
## 833                             Lao 1964               NA           43.13
## 834                          Latvia 1964               NA           71.62
## 835                         Lebanon 1964         52.30000           64.00
## 836                         Lesotho 1964        141.30000           48.59
## 837                         Liberia 1964        208.80000           36.73
## 838                           Libya 1964        133.50000           51.28
## 839                       Lithuania 1964               NA           72.00
## 840                      Luxembourg 1964         25.40000           68.98
## 841                    Macao, China 1964               NA           66.81
## 842                  Macedonia, FYR 1964               NA           63.32
## 843                      Madagascar 1964               NA           44.28
## 844                          Malawi 1964        214.30000           39.49
## 845                        Malaysia 1964         55.80000           62.17
## 846                        Maldives 1964        211.10000           41.48
## 847                            Mali 1964        212.80000           30.79
## 848                           Malta 1964         31.60000           69.70
## 849                      Mauritania 1964        123.10000           46.59
## 850                       Mauritius 1964         58.10000           61.97
## 851                          Mexico 1964         89.30000           59.40
## 852           Micronesia, Fed. Sts. 1964               NA           58.26
## 853                         Moldova 1964               NA           63.77
## 854                        Mongolia 1964               NA           52.74
## 855                      Montenegro 1964               NA           66.47
## 856                         Morocco 1964        135.50000           51.58
## 857                      Mozambique 1964        180.50000           40.54
## 858                         Namibia 1964               NA           49.48
## 859                           Nepal 1964        205.20000           41.67
## 860                     Netherlands 1964         14.90000           73.71
## 861                   New Caledonia 1964               NA           58.99
## 862                     New Zealand 1964         19.30000           71.37
## 863                       Nicaragua 1964        128.20000           54.04
## 864                           Niger 1964               NA           37.36
## 865                         Nigeria 1964        195.40000           42.75
## 866                          Norway 1964         16.60000           73.70
## 867                            Oman 1964        207.90000           48.26
## 868                        Pakistan 1964        165.80000           50.27
## 869                          Panama 1964         60.40000           63.72
## 870                Papua New Guinea 1964        119.60000           41.39
## 871                        Paraguay 1964         60.50000           67.61
## 872                            Peru 1964        121.80000           51.25
## 873                     Philippines 1964         61.40000           60.21
## 874                          Poland 1964         43.90000           68.87
## 875                        Portugal 1964         70.10000           65.22
## 876                     Puerto Rico 1964               NA           69.45
## 877                           Qatar 1964               NA           63.79
## 878                         Romania 1964               NA           67.96
## 879                          Russia 1964               NA           69.77
## 880                          Rwanda 1964        122.00000           44.35
## 881                       St. Lucia 1964               NA           59.66
## 882  St. Vincent and the Grenadines 1964               NA           61.75
## 883                           Samoa 1964               NA           53.80
## 884                    Saudi Arabia 1964               NA           50.15
## 885                         Senegal 1964        125.90000           38.74
## 886                          Serbia 1964               NA           65.53
## 887                      Seychelles 1964         67.80000           62.47
## 888                    Sierra Leone 1964        211.00000           38.10
## 889                       Singapore 1964         28.30000           66.16
## 890                 Slovak Republic 1964               NA           71.17
## 891                        Slovenia 1964               NA           69.12
## 892                 Solomon Islands 1964        108.40000           52.84
## 893                    South Africa 1964               NA           50.52
## 894                           Spain 1964         37.30000           70.54
## 895                       Sri Lanka 1964         62.40000           61.55
## 896                           Sudan 1964        101.10000           51.47
## 897                        Suriname 1964               NA           62.23
## 898                       Swaziland 1964        133.70000           46.05
## 899                          Sweden 1964         14.40000           73.70
## 900                     Switzerland 1964         19.30000           72.23
## 901                           Syria 1964        100.80000           55.15
## 902                      Tajikistan 1964               NA           58.98
## 903                        Tanzania 1964        139.00000           46.99
## 904                        Thailand 1964         89.70000           57.40
## 905                     Timor-Leste 1964               NA           40.55
## 906                            Togo 1964        150.50000           43.77
## 907                           Tonga 1964         57.00000           62.60
## 908             Trinidad and Tobago 1964         50.10000           64.94
## 909                         Tunisia 1964        163.20000           46.35
## 910                          Turkey 1964        148.20000           50.15
## 911                    Turkmenistan 1964               NA           56.72
## 912                          Uganda 1964        122.90000           47.86
## 913                         Ukraine 1964               NA           71.97
## 914            United Arab Emirates 1964        111.00000           55.90
## 915                  United Kingdom 1964         20.80000           71.53
## 916                   United States 1964         23.80000           70.33
## 917                         Uruguay 1964         52.70000           68.67
## 918                      Uzbekistan 1964               NA           61.15
## 919                         Vanuatu 1964         95.90000           48.29
## 920                       Venezuela 1964         54.20000           62.51
## 921              West Bank and Gaza 1964               NA           53.47
## 922                         Vietnam 1964         61.70000           60.95
## 923                           Yemen 1964        270.70000           36.37
## 924                          Zambia 1964        115.10000           50.44
## 925                        Zimbabwe 1964         82.80000           54.83
## 926                         Albania 1965         94.10000           66.59
## 927                         Algeria 1965        149.10000           50.09
## 928                          Angola 1965               NA           38.74
## 929             Antigua and Barbuda 1965               NA           65.23
## 930                       Argentina 1965         59.11000           65.95
## 931                         Armenia 1965               NA           69.26
## 932                           Aruba 1965               NA           67.44
## 933                       Australia 1965         18.60000           70.96
## 934                         Austria 1965         28.30000           69.92
## 935                      Azerbaijan 1965               NA           63.49
## 936                         Bahamas 1965               NA           63.40
## 937                         Bahrain 1965         88.60000           58.10
## 938                      Bangladesh 1965        157.40000           48.60
## 939                        Barbados 1965         51.70000           64.20
## 940                         Belarus 1965               NA           72.70
## 941                         Belgium 1965         24.10000           70.51
## 942                          Belize 1965               NA           62.95
## 943                           Benin 1965        170.20000           40.93
## 944                          Bhutan 1965               NA           38.68
## 945                         Bolivia 1965        159.40000           45.62
## 946          Bosnia and Herzegovina 1965               NA           66.14
## 947                        Botswana 1965         99.80000           52.00
## 948                          Brazil 1965        114.50000           57.66
## 949                          Brunei 1965               NA           65.21
## 950                        Bulgaria 1965         39.40000           71.35
## 951                    Burkina Faso 1965        153.00000           37.80
## 952                         Burundi 1965        143.60000           41.95
## 953                        Cambodia 1965               NA           43.45
## 954                        Cameroon 1965        152.20000           46.13
## 955                          Canada 1965         23.10000           71.74
## 956                      Cape Verde 1965               NA           51.00
## 957        Central African Republic 1965        151.70000           39.92
## 958                            Chad 1965               NA           43.01
## 959                           Chile 1965         96.50000           59.03
## 960                           China 1965         81.00000           54.28
## 961                        Colombia 1965         80.90000           60.70
## 962                         Comoros 1965               NA           46.18
## 963                Congo, Dem. Rep. 1965               NA           45.77
## 964                     Congo, Rep. 1965         99.70000           51.02
## 965                      Costa Rica 1965         68.80000           64.80
## 966                   Cote d'Ivoire 1965        183.30000           41.51
## 967                         Croatia 1965               NA           66.80
## 968                            Cuba 1965         39.50000           66.99
## 969                          Cyprus 1965               NA           71.33
## 970                  Czech Republic 1965               NA           70.43
## 971                         Denmark 1965         17.80000           72.49
## 972                        Djibouti 1965               NA           48.33
## 973              Dominican Republic 1965         94.60000           57.28
## 974                         Ecuador 1965        107.00000           57.02
## 975                           Egypt 1965        178.10000           50.88
## 976                     El Salvador 1965        115.50000           55.40
## 977               Equatorial Guinea 1965               NA           39.44
## 978                         Eritrea 1965               NA           40.81
## 979                         Estonia 1965               NA           70.81
## 980                        Ethiopia 1965               NA           38.13
## 981                            Fiji 1965         46.30000           57.75
## 982                         Finland 1965         16.60000           69.16
## 983                          France 1965         18.50000           71.26
## 984                French Polynesia 1965               NA           58.24
## 985                           Gabon 1965               NA           41.42
## 986                          Gambia 1965        137.10000           38.66
## 987                         Georgia 1965               NA           65.52
## 988                         Germany 1965               NA           70.65
## 989                           Ghana 1965        120.80000           48.44
## 990                          Greece 1965         42.30000           69.91
## 991                       Greenland 1965               NA           63.34
## 992                         Grenada 1965               NA           62.76
## 993                       Guatemala 1965        132.60000           49.73
## 994                          Guinea 1965        204.50000           36.77
## 995                   Guinea-Bissau 1965               NA           44.39
## 996                          Guyana 1965         58.30000           59.92
## 997                           Haiti 1965        179.10000           44.93
## 998                        Honduras 1965        120.50000           51.35
## 999                Hong Kong, China 1965               NA           69.96
## 1000                        Hungary 1965         44.40000           69.22
## 1001                        Iceland 1965         15.50000           74.00
## 1002                          India 1965        153.20000           44.98
## 1003                      Indonesia 1965        130.60000           43.77
## 1004                           Iran 1965        155.99000           49.04
## 1005                           Iraq 1965        102.10000           52.52
## 1006                        Ireland 1965         24.70000           71.35
## 1007                         Israel 1965               NA           69.93
## 1008                          Italy 1965         35.70000           70.24
## 1009                        Jamaica 1965         52.40000           68.73
## 1010                          Japan 1965         19.10000           70.31
## 1011                         Jordan 1965         82.80000           57.35
## 1012                     Kazakhstan 1965               NA           61.24
## 1013                          Kenya 1965        101.20000           50.75
## 1014                       Kiribati 1965        113.90000           47.84
## 1015                    South Korea 1965         61.60000           56.84
## 1016                         Kuwait 1965         72.60000           65.92
## 1017                Kyrgyz Republic 1965               NA           58.34
## 1018                            Lao 1965               NA           43.39
## 1019                         Latvia 1965               NA           71.29
## 1020                        Lebanon 1965         51.40000           64.25
## 1021                        Lesotho 1965        140.90000           48.79
## 1022                        Liberia 1965        206.80000           37.23
## 1023                          Libya 1965        126.60000           52.77
## 1024                      Lithuania 1965               NA           71.76
## 1025                     Luxembourg 1965         24.40000           69.31
## 1026                   Macao, China 1965               NA           67.24
## 1027                 Macedonia, FYR 1965               NA           63.92
## 1028                     Madagascar 1965        111.00000           44.85
## 1029                         Malawi 1965        213.30000           39.75
## 1030                       Malaysia 1965         53.40000           62.71
## 1031                       Maldives 1965        205.30000           42.47
## 1032                           Mali 1965        209.20000           31.26
## 1033                          Malta 1965         30.60000           70.03
## 1034                     Mauritania 1965        120.30000           47.18
## 1035                      Mauritius 1965         60.50000           62.40
## 1036                         Mexico 1965         87.60000           59.78
## 1037          Micronesia, Fed. Sts. 1965               NA           58.63
## 1038                        Moldova 1965               NA           64.14
## 1039                       Mongolia 1965               NA           53.48
## 1040                     Montenegro 1965               NA           67.05
## 1041                        Morocco 1965        133.00000           52.06
## 1042                     Mozambique 1965        185.60000           41.10
## 1043                        Namibia 1965               NA           50.05
## 1044                          Nepal 1965        200.70000           42.14
## 1045                    Netherlands 1965         14.50000           73.58
## 1046                  New Caledonia 1965               NA           59.60
## 1047                    New Zealand 1965         18.70000           71.30
## 1048                      Nicaragua 1965        126.60000           54.88
## 1049                          Niger 1965               NA           37.49
## 1050                        Nigeria 1965        191.00000           43.29
## 1051                         Norway 1965         16.00000           73.83
## 1052                           Oman 1965        197.60000           49.13
## 1053                       Pakistan 1965        160.50000           51.01
## 1054                         Panama 1965         59.00000           64.21
## 1055               Papua New Guinea 1965        116.10000           42.22
## 1056                       Paraguay 1965         60.00000           67.87
## 1057                           Peru 1965        118.20000           51.79
## 1058                    Philippines 1965         60.20000           60.56
## 1059                         Poland 1965         40.80000           69.58
## 1060                       Portugal 1965         66.40000           66.17
## 1061                    Puerto Rico 1965               NA           69.72
## 1062                          Qatar 1965               NA           64.53
## 1063                        Romania 1965               NA           68.02
## 1064                         Russia 1965               NA           69.36
## 1065                         Rwanda 1965        122.20000           44.62
## 1066                      St. Lucia 1965               NA           60.15
## 1067 St. Vincent and the Grenadines 1965               NA           62.46
## 1068                          Samoa 1965               NA           54.39
## 1069                   Saudi Arabia 1965               NA           50.88
## 1070                        Senegal 1965        125.70000           38.71
## 1071                         Serbia 1965               NA           66.06
## 1072                     Seychelles 1965         66.00000           62.81
## 1073                   Sierra Leone 1965        207.60000           38.70
## 1074                      Singapore 1965         27.30000           66.31
## 1075                Slovak Republic 1965               NA           70.39
## 1076                       Slovenia 1965               NA           69.14
## 1077                Solomon Islands 1965        103.30000           53.42
## 1078                   South Africa 1965               NA           50.91
## 1079                          Spain 1965         35.60000           70.95
## 1080                      Sri Lanka 1965         60.40000           62.07
## 1081                          Sudan 1965         99.80000           51.94
## 1082                       Suriname 1965               NA           62.65
## 1083                      Swaziland 1965        131.30000           46.39
## 1084                         Sweden 1965         13.70000           73.85
## 1085                    Switzerland 1965         18.40000           72.36
## 1086                          Syria 1965         96.20000           55.77
## 1087                     Tajikistan 1965               NA           59.45
## 1088                       Tanzania 1965        137.30000           47.37
## 1089                       Thailand 1965         86.80000           57.80
## 1090                    Timor-Leste 1965               NA           41.29
## 1091                           Togo 1965        147.70000           44.43
## 1092                          Tonga 1965         53.80000           62.94
## 1093            Trinidad and Tobago 1965         48.80000           65.17
## 1094                        Tunisia 1965        155.70000           47.31
## 1095                         Turkey 1965        144.10000           50.96
## 1096                   Turkmenistan 1965               NA           57.17
## 1097                         Uganda 1965        120.90000           48.49
## 1098                        Ukraine 1965               NA           71.40
## 1099           United Arab Emirates 1965        104.40000           56.87
## 1100                 United Kingdom 1965         20.10000           71.52
## 1101                  United States 1965         23.30000           70.41
## 1102                        Uruguay 1965         52.10000           68.74
## 1103                     Uzbekistan 1965               NA           61.59
## 1104                        Vanuatu 1965         92.80000           48.87
## 1105                      Venezuela 1965         53.10000           63.09
## 1106             West Bank and Gaza 1965               NA           54.20
## 1107                        Vietnam 1965         60.70000           61.32
## 1108                          Yemen 1965        263.60000           37.27
## 1109                         Zambia 1965        114.00000           50.96
## 1110                       Zimbabwe 1965         80.50000           55.25
## 1111                        Albania 1966         90.20000           66.88
## 1112                        Algeria 1966        149.30000           50.58
## 1113                         Angola 1966               NA           39.28
## 1114            Antigua and Barbuda 1966               NA           65.63
## 1115                      Argentina 1966         58.89000           66.08
## 1116                        Armenia 1966               NA           69.74
## 1117                          Aruba 1966               NA           67.76
## 1118                      Australia 1966         18.30000           70.79
## 1119                        Austria 1966         27.30000           70.22
## 1120                     Azerbaijan 1966               NA           63.91
## 1121                        Bahamas 1966               NA           63.65
## 1122                        Bahrain 1966         81.30000           59.23
## 1123                     Bangladesh 1966        155.00000           48.63
## 1124                       Barbados 1966         49.20000           64.64
## 1125                        Belarus 1966               NA           73.05
## 1126                        Belgium 1966         23.30000           70.58
## 1127                         Belize 1966               NA           63.53
## 1128                          Benin 1966        166.80000           41.50
## 1129                         Bhutan 1966               NA           39.28
## 1130                        Bolivia 1966        156.50000           45.99
## 1131         Bosnia and Herzegovina 1966               NA           66.81
## 1132                       Botswana 1966         97.00000           52.36
## 1133                         Brazil 1966        112.10000           58.07
## 1134                         Brunei 1966               NA           65.67
## 1135                       Bulgaria 1966         39.00000           71.28
## 1136                   Burkina Faso 1966        151.80000           38.30
## 1137                        Burundi 1966        144.50000           42.18
## 1138                       Cambodia 1966               NA           43.73
## 1139                       Cameroon 1966        148.10000           46.67
## 1140                         Canada 1966         22.10000           71.86
## 1141                     Cape Verde 1966               NA           51.32
## 1142       Central African Republic 1966        148.60000           40.50
## 1143                           Chad 1966               NA           43.48
## 1144                          Chile 1966         87.40000           59.54
## 1145                          China 1966               NA           55.37
## 1146                       Colombia 1966         79.00000           61.16
## 1147                        Comoros 1966               NA           46.63
## 1148               Congo, Dem. Rep. 1966               NA           46.20
## 1149                    Congo, Rep. 1966         97.30000           51.45
## 1150                     Costa Rica 1966         66.30000           65.33
## 1151                  Cote d'Ivoire 1966        178.70000           42.21
## 1152                        Croatia 1966               NA           67.16
## 1153                           Cuba 1966         39.20000           67.60
## 1154                         Cyprus 1966               NA           71.62
## 1155                 Czech Republic 1966               NA           70.65
## 1156                        Denmark 1966         17.00000           72.57
## 1157                       Djibouti 1966               NA           48.90
## 1158             Dominican Republic 1966         92.80000           58.02
## 1159                        Ecuador 1966        104.60000           57.47
## 1160                          Egypt 1966        173.60000           51.29
## 1161                    El Salvador 1966        113.60000           55.93
## 1162              Equatorial Guinea 1966               NA           39.78
## 1163                        Eritrea 1966               NA           41.22
## 1164                        Estonia 1966               NA           70.78
## 1165                       Ethiopia 1966        143.10000           39.09
## 1166                           Fiji 1966         45.30000           58.14
## 1167                        Finland 1966         15.80000           69.68
## 1168                         France 1966         17.70000           71.67
## 1169               French Polynesia 1966               NA           58.65
## 1170                          Gabon 1966               NA           42.21
## 1171                         Gambia 1966        134.90000           39.47
## 1172                        Georgia 1966               NA           65.90
## 1173                        Germany 1966               NA           70.77
## 1174                          Ghana 1966        120.70000           48.80
## 1175                         Greece 1966         41.20000           70.12
## 1176                      Greenland 1966               NA           63.71
## 1177                        Grenada 1966               NA           63.16
## 1178                      Guatemala 1966        129.90000           50.43
## 1179                         Guinea 1966        202.60000           36.96
## 1180                  Guinea-Bissau 1966               NA           44.63
## 1181                         Guyana 1966         57.30000           60.09
## 1182                          Haiti 1966        176.00000           45.43
## 1183                       Honduras 1966        116.70000           52.02
## 1184               Hong Kong, China 1966               NA           70.37
## 1185                        Hungary 1966         43.20000           69.98
## 1186                        Iceland 1966         15.00000           73.40
## 1187                          India 1966        151.00000           45.73
## 1188                      Indonesia 1966        127.00000           44.18
## 1189                           Iran 1966        149.86000           49.66
## 1190                           Iraq 1966         97.40000           53.51
## 1191                        Ireland 1966         23.30000           70.89
## 1192                         Israel 1966               NA           70.17
## 1193                          Italy 1966         34.30000           70.99
## 1194                        Jamaica 1966         50.80000           69.17
## 1195                          Japan 1966         17.50000           71.12
## 1196                         Jordan 1966         78.90000           58.13
## 1197                     Kazakhstan 1966               NA           61.69
## 1198                          Kenya 1966         99.00000           51.35
## 1199                       Kiribati 1966        110.10000           48.23
## 1200                    South Korea 1966         57.80000           57.67
## 1201                         Kuwait 1966         68.00000           66.58
## 1202                Kyrgyz Republic 1966               NA           58.76
## 1203                            Lao 1966               NA           43.64
## 1204                         Latvia 1966               NA           71.26
## 1205                        Lebanon 1966         50.50000           64.50
## 1206                        Lesotho 1966        140.10000           48.95
## 1207                        Liberia 1966        204.60000           37.77
## 1208                          Libya 1966        119.80000           54.15
## 1209                      Lithuania 1966               NA           71.92
## 1210                     Luxembourg 1966         23.40000           69.21
## 1211                   Macao, China 1966               NA           67.66
## 1212                 Macedonia, FYR 1966               NA           64.51
## 1213                     Madagascar 1966        108.10000           45.43
## 1214                         Malawi 1966        212.30000           40.03
## 1215                       Malaysia 1966         51.20000           63.21
## 1216                       Maldives 1966        199.20000           43.48
## 1217                           Mali 1966        206.10000           31.80
## 1218                          Malta 1966         29.50000           70.36
## 1219                     Mauritania 1966        117.60000           47.73
## 1220                      Mauritius 1966         65.50000           62.67
## 1221                         Mexico 1966         86.00000           60.15
## 1222          Micronesia, Fed. Sts. 1966               NA           58.99
## 1223                        Moldova 1966               NA           64.48
## 1224                       Mongolia 1966               NA           54.16
## 1225                     Montenegro 1966               NA           67.62
## 1226                        Morocco 1966        130.40000           52.54
## 1227                     Mozambique 1966        185.00000           41.66
## 1228                        Namibia 1966               NA           50.61
## 1229                          Nepal 1966        195.90000           42.60
## 1230                    Netherlands 1966         14.20000           73.52
## 1231                  New Caledonia 1966               NA           60.19
## 1232                    New Zealand 1966         18.30000           71.16
## 1233                      Nicaragua 1966        125.00000           55.74
## 1234                          Niger 1966               NA           37.61
## 1235                        Nigeria 1966        186.80000           43.81
## 1236                         Norway 1966         15.40000           74.11
## 1237                           Oman 1966        187.80000           49.97
## 1238                       Pakistan 1966        155.70000           51.70
## 1239                         Panama 1966         57.60000           64.70
## 1240               Papua New Guinea 1966        112.70000           43.07
## 1241                       Paraguay 1966         59.60000           68.11
## 1242                           Peru 1966        114.80000           52.38
## 1243                    Philippines 1966         59.10000           60.91
## 1244                         Poland 1966         37.90000           69.99
## 1245                       Portugal 1966         63.60000           65.67
## 1246                    Puerto Rico 1966               NA           70.03
## 1247                          Qatar 1966               NA           65.25
## 1248                        Romania 1966               NA           67.98
## 1249                         Russia 1966               NA           69.43
## 1250                         Rwanda 1966        123.00000           44.85
## 1251                      St. Lucia 1966               NA           60.58
## 1252 St. Vincent and the Grenadines 1966               NA           63.06
## 1253                          Samoa 1966               NA           54.98
## 1254                   Saudi Arabia 1966               NA           51.68
## 1255                        Senegal 1966        125.30000           38.70
## 1256                         Serbia 1966               NA           66.56
## 1257                     Seychelles 1966         64.00000           63.11
## 1258                   Sierra Leone 1966        204.20000           39.38
## 1259                      Singapore 1966         26.40000           66.46
## 1260                Slovak Republic 1966               NA           70.53
## 1261                       Slovenia 1966               NA           69.14
## 1262                Solomon Islands 1966         98.20000           54.00
## 1263                   South Africa 1966               NA           51.30
## 1264                          Spain 1966         33.90000           71.20
## 1265                      Sri Lanka 1966         58.60000           62.62
## 1266                          Sudan 1966         98.60000           52.42
## 1267                       Suriname 1966               NA           63.07
## 1268                      Swaziland 1966        128.90000           46.76
## 1269                         Sweden 1966         13.00000           74.09
## 1270                    Switzerland 1966         17.60000           72.50
## 1271                          Syria 1966         91.70000           56.42
## 1272                     Tajikistan 1966               NA           59.90
## 1273                       Tanzania 1966        135.40000           47.77
## 1274                       Thailand 1966         83.80000           58.18
## 1275                    Timor-Leste 1966               NA           42.12
## 1276                           Togo 1966        144.70000           45.09
## 1277                          Tonga 1966         50.70000           63.27
## 1278            Trinidad and Tobago 1966         47.70000           65.31
## 1279                        Tunisia 1966        148.40000           48.33
## 1280                         Turkey 1966        140.20000           51.74
## 1281                   Turkmenistan 1966               NA           57.61
## 1282                         Uganda 1966        119.00000           49.07
## 1283                        Ukraine 1966               NA           71.66
## 1284           United Arab Emirates 1966         97.50000           57.81
## 1285                 United Kingdom 1966         19.60000           71.43
## 1286                  United States 1966         22.70000           70.43
## 1287                        Uruguay 1966         51.70000           68.78
## 1288                     Uzbekistan 1966               NA           62.02
## 1289                        Vanuatu 1966         89.80000           49.44
## 1290                      Venezuela 1966         52.20000           63.66
## 1291             West Bank and Gaza 1966               NA           54.94
## 1292                        Vietnam 1966         59.90000           61.36
## 1293                          Yemen 1966        256.00000           38.15
## 1294                         Zambia 1966        113.30000           51.49
## 1295                       Zimbabwe 1966         78.30000           55.65
## 1296                        Albania 1967         86.80000           67.11
## 1297                        Algeria 1967        149.20000           51.05
## 1298                         Angola 1967               NA           39.84
## 1299            Antigua and Barbuda 1967               NA           66.03
## 1300                      Argentina 1967         58.73000           66.26
## 1301                        Armenia 1967               NA           70.22
## 1302                          Aruba 1967               NA           68.10
## 1303                      Australia 1967         18.30000           71.07
## 1304                        Austria 1967         26.40000           70.10
## 1305                     Azerbaijan 1967               NA           64.35
## 1306                        Bahamas 1967               NA           63.91
## 1307                        Bahrain 1967         74.50000           60.29
## 1308                     Bangladesh 1967        153.00000           48.37
## 1309                       Barbados 1967         47.10000           65.08
## 1310                        Belarus 1967               NA           72.78
## 1311                        Belgium 1967         22.50000           70.86
## 1312                         Belize 1967         78.20000           64.11
## 1313                          Benin 1967        164.00000           42.09
## 1314                         Bhutan 1967               NA           39.94
## 1315                        Bolivia 1967        153.60000           46.34
## 1316         Bosnia and Herzegovina 1967               NA           67.47
## 1317                       Botswana 1967         94.10000           52.77
## 1318                         Brazil 1967        109.80000           58.49
## 1319                         Brunei 1967               NA           66.12
## 1320                       Bulgaria 1967         38.40000           70.47
## 1321                   Burkina Faso 1967        150.90000           38.80
## 1322                        Burundi 1967        145.30000           42.37
## 1323                       Cambodia 1967               NA           44.00
## 1324                       Cameroon 1967        143.10000           47.22
## 1325                         Canada 1967         21.20000           72.07
## 1326                     Cape Verde 1967               NA           51.75
## 1327       Central African Republic 1967        145.60000           41.15
## 1328                           Chad 1967               NA           43.98
## 1329                          Chile 1967         79.00000           60.07
## 1330                          China 1967               NA           56.90
## 1331                       Colombia 1967         77.10000           61.60
## 1332                        Comoros 1967               NA           47.10
## 1333               Congo, Dem. Rep. 1967               NA           46.66
## 1334                    Congo, Rep. 1967         94.90000           51.84
## 1335                     Costa Rica 1967         64.60000           65.85
## 1336                  Cote d'Ivoire 1967        174.20000           42.93
## 1337                        Croatia 1967               NA           67.52
## 1338                           Cuba 1967         39.30000           68.20
## 1339                         Cyprus 1967               NA           71.92
## 1340                 Czech Republic 1967               NA           70.55
## 1341                        Denmark 1967         16.10000           73.06
## 1342                       Djibouti 1967               NA           49.53
## 1343             Dominican Republic 1967         91.10000           58.75
## 1344                        Ecuador 1967        102.40000           57.89
## 1345                          Egypt 1967        169.90000           51.65
## 1346                    El Salvador 1967        111.80000           56.41
## 1347              Equatorial Guinea 1967               NA           40.13
## 1348                        Eritrea 1967               NA           41.66
## 1349                        Estonia 1967               NA           71.08
## 1350                       Ethiopia 1967        142.70000           41.09
## 1351                           Fiji 1967         44.50000           58.52
## 1352                        Finland 1967         15.10000           69.86
## 1353                         France 1967         17.10000           71.67
## 1354               French Polynesia 1967               NA           59.06
## 1355                          Gabon 1967               NA           43.06
## 1356                         Gambia 1967        132.60000           40.36
## 1357                        Georgia 1967               NA           66.26
## 1358                        Germany 1967               NA           70.99
## 1359                          Ghana 1967        120.60000           49.14
## 1360                         Greece 1967         39.90000           70.34
## 1361                      Greenland 1967               NA           64.08
## 1362                        Grenada 1967               NA           63.54
## 1363                      Guatemala 1967        127.10000           51.16
## 1364                         Guinea 1967        200.90000           37.16
## 1365                  Guinea-Bissau 1967               NA           44.86
## 1366                         Guyana 1967         56.60000           60.25
## 1367                          Haiti 1967        172.90000           45.90
## 1368                       Honduras 1967        113.10000           52.68
## 1369               Hong Kong, China 1967               NA           70.77
## 1370                        Hungary 1967         42.00000           69.55
## 1371                        Iceland 1967         14.40000           73.90
## 1372                          India 1967        148.90000           46.49
## 1373                      Indonesia 1967        123.40000           50.54
## 1374                           Iran 1967        191.30000           50.30
## 1375                           Iraq 1967         93.00000           54.42
## 1376                        Ireland 1967         21.90000           71.95
## 1377                         Israel 1967               NA           70.39
## 1378                          Italy 1967         33.10000           71.03
## 1379                        Jamaica 1967         49.30000           69.58
## 1380                          Japan 1967         16.30000           71.41
## 1381                         Jordan 1967         75.20000           58.90
## 1382                     Kazakhstan 1967               NA           62.12
## 1383                          Kenya 1967         97.10000           51.96
## 1384                       Kiribati 1967        106.50000           48.63
## 1385                    South Korea 1967         54.00000           58.54
## 1386                         Kuwait 1967         63.70000           67.20
## 1387                Kyrgyz Republic 1967               NA           59.19
## 1388                            Lao 1967               NA           43.89
## 1389                         Latvia 1967               NA           70.94
## 1390                        Lebanon 1967         49.80000           64.76
## 1391                        Lesotho 1967        138.90000           49.09
## 1392                        Liberia 1967        201.70000           38.33
## 1393                          Libya 1967        113.30000           55.45
## 1394                      Lithuania 1967         24.10000           71.99
## 1395                     Luxembourg 1967         22.40000           69.59
## 1396                   Macao, China 1967               NA           68.06
## 1397                 Macedonia, FYR 1967               NA           65.08
## 1398                     Madagascar 1967        105.40000           46.01
## 1399                         Malawi 1967        211.50000           40.36
## 1400                       Malaysia 1967         49.10000           63.70
## 1401                       Maldives 1967        193.10000           44.49
## 1402                           Mali 1967        203.00000           32.41
## 1403                          Malta 1967         28.30000           70.67
## 1404                     Mauritania 1967        114.80000           48.26
## 1405                      Mauritius 1967         68.40000           62.85
## 1406                         Mexico 1967         84.10000           60.53
## 1407          Micronesia, Fed. Sts. 1967               NA           59.36
## 1408                        Moldova 1967               NA           64.78
## 1409                       Mongolia 1967               NA           54.80
## 1410                     Montenegro 1967               NA           68.19
## 1411                        Morocco 1967        127.90000           53.00
## 1412                     Mozambique 1967        184.10000           42.21
## 1413                        Namibia 1967         62.30000           51.17
## 1414                          Nepal 1967        191.30000           43.05
## 1415                    Netherlands 1967         13.80000           73.79
## 1416                  New Caledonia 1967               NA           60.77
## 1417                    New Zealand 1967         17.90000           71.54
## 1418                      Nicaragua 1967        123.10000           56.60
## 1419                          Niger 1967        133.10000           37.73
## 1420                        Nigeria 1967        182.60000           38.31
## 1421                         Norway 1967         14.80000           74.18
## 1422                           Oman 1967        178.50000           50.80
## 1423                       Pakistan 1967        151.50000           52.34
## 1424                         Panama 1967         56.20000           65.18
## 1425               Papua New Guinea 1967        109.50000           43.92
## 1426                       Paraguay 1967         59.30000           68.37
## 1427                           Peru 1967        111.60000           53.03
## 1428                    Philippines 1967         58.00000           61.26
## 1429                         Poland 1967         35.70000           69.69
## 1430                       Portugal 1967         61.70000           66.57
## 1431                    Puerto Rico 1967               NA           70.36
## 1432                          Qatar 1967               NA           65.95
## 1433                        Romania 1967               NA           67.95
## 1434                         Russia 1967               NA           69.21
## 1435                         Rwanda 1967        124.00000           45.07
## 1436                      St. Lucia 1967               NA           61.00
## 1437 St. Vincent and the Grenadines 1967               NA           63.58
## 1438                          Samoa 1967               NA           55.57
## 1439                   Saudi Arabia 1967               NA           52.55
## 1440                        Senegal 1967        124.70000           38.74
## 1441                         Serbia 1967               NA           67.05
## 1442                     Seychelles 1967         61.80000           63.43
## 1443                   Sierra Leone 1967        200.80000           40.18
## 1444                      Singapore 1967         25.30000           66.63
## 1445                Slovak Republic 1967               NA           71.07
## 1446                       Slovenia 1967               NA           69.14
## 1447                Solomon Islands 1967         92.80000           54.58
## 1448                   South Africa 1967               NA           51.68
## 1449                          Spain 1967         32.10000           71.39
## 1450                      Sri Lanka 1967         57.00000           63.17
## 1451                          Sudan 1967         97.40000           52.90
## 1452                       Suriname 1967               NA           63.49
## 1453                      Swaziland 1967        126.50000           47.20
## 1454                         Sweden 1967         12.60000           74.12
## 1455                    Switzerland 1967         16.90000           72.80
## 1456                          Syria 1967         87.40000           57.12
## 1457                     Tajikistan 1967               NA           60.34
## 1458                       Tanzania 1967        133.50000           48.19
## 1459                       Thailand 1967         80.80000           58.56
## 1460                    Timor-Leste 1967               NA           43.02
## 1461                           Togo 1967        141.80000           45.75
## 1462                          Tonga 1967         47.80000           63.61
## 1463            Trinidad and Tobago 1967         46.70000           65.41
## 1464                        Tunisia 1967        141.40000           49.42
## 1465                         Turkey 1967        136.60000           52.48
## 1466                   Turkmenistan 1967               NA           58.02
## 1467                         Uganda 1967        117.20000           49.58
## 1468                        Ukraine 1967               NA           71.25
## 1469           United Arab Emirates 1967         90.60000           58.70
## 1470                 United Kingdom 1967         19.10000           72.06
## 1471                  United States 1967         22.00000           70.76
## 1472                        Uruguay 1967         51.20000           68.80
## 1473                     Uzbekistan 1967               NA           62.43
## 1474                        Vanuatu 1967         86.60000           50.01
## 1475                      Venezuela 1967         51.30000           64.22
## 1476             West Bank and Gaza 1967               NA           55.70
## 1477                        Vietnam 1967         59.00000           61.06
## 1478                          Yemen 1967        247.80000           39.01
## 1479                         Zambia 1967        112.90000           52.05
## 1480                       Zimbabwe 1967         76.30000           56.04
## 1481                        Albania 1968         83.50000           67.32
## 1482                        Algeria 1968        148.70000           51.49
## 1483                         Angola 1968               NA           40.39
## 1484            Antigua and Barbuda 1968               NA           66.41
## 1485                      Argentina 1968         58.58000           66.47
## 1486                        Armenia 1968               NA           70.67
## 1487                          Aruba 1968               NA           68.44
## 1488                      Australia 1968         18.20000           70.70
## 1489                        Austria 1968         25.70000           70.25
## 1490                     Azerbaijan 1968               NA           64.75
## 1491                        Bahamas 1968         25.00000           64.14
## 1492                        Bahrain 1968         68.20000           61.29
## 1493                     Bangladesh 1968        151.50000           47.83
## 1494                       Barbados 1968         45.10000           65.50
## 1495                        Belarus 1968               NA           72.88
## 1496                        Belgium 1968         21.90000           70.55
## 1497                         Belize 1968         75.50000           64.67
## 1498                          Benin 1968        161.50000           42.69
## 1499                         Bhutan 1968        192.10000           40.66
## 1500                        Bolivia 1968        150.60000           46.69
## 1501         Bosnia and Herzegovina 1968               NA           68.14
## 1502                       Botswana 1968         91.20000           53.23
## 1503                         Brazil 1968        107.40000           58.91
## 1504                         Brunei 1968               NA           66.54
## 1505                       Bulgaria 1968         37.30000           71.30
## 1506                   Burkina Faso 1968        150.20000           39.30
## 1507                        Burundi 1968        145.90000           42.52
## 1508                       Cambodia 1968               NA           44.13
## 1509                       Cameroon 1968        137.30000           47.79
## 1510                         Canada 1968         20.20000           72.23
## 1511                     Cape Verde 1968               NA           52.32
## 1512       Central African Republic 1968        142.60000           41.84
## 1513                           Chad 1968               NA           44.54
## 1514                          Chile 1968         72.70000           60.61
## 1515                          China 1968               NA           57.87
## 1516                       Colombia 1968         74.90000           62.03
## 1517                        Comoros 1968               NA           47.58
## 1518               Congo, Dem. Rep. 1968               NA           47.14
## 1519                    Congo, Rep. 1968         92.70000           52.21
## 1520                     Costa Rica 1968         63.50000           66.35
## 1521                  Cote d'Ivoire 1968        169.90000           43.70
## 1522                        Croatia 1968               NA           67.87
## 1523                           Cuba 1968         39.50000           68.78
## 1524                         Cyprus 1968               NA           72.19
## 1525                 Czech Republic 1968               NA           70.11
## 1526                        Denmark 1968         15.20000           73.27
## 1527                       Djibouti 1968               NA           50.23
## 1528             Dominican Republic 1968         89.30000           59.47
## 1529                        Ecuador 1968        100.30000           58.32
## 1530                          Egypt 1968        166.90000           51.97
## 1531                    El Salvador 1968        110.10000           56.84
## 1532              Equatorial Guinea 1968               NA           40.48
## 1533                        Eritrea 1968               NA           42.10
## 1534                        Estonia 1968               NA           70.70
## 1535                       Ethiopia 1968        142.40000           41.38
## 1536                           Fiji 1968         43.90000           58.89
## 1537                        Finland 1968         14.40000           69.82
## 1538                         France 1968         16.50000           71.66
## 1539               French Polynesia 1968               NA           59.45
## 1540                          Gabon 1968               NA           43.90
## 1541                         Gambia 1968        130.50000           41.30
## 1542                        Georgia 1968               NA           66.60
## 1543                        Germany 1968         23.50000           70.64
## 1544                          Ghana 1968        120.60000           49.46
## 1545                         Greece 1968         38.30000           70.59
## 1546                      Greenland 1968               NA           64.45
## 1547                        Grenada 1968               NA           63.91
## 1548                      Guatemala 1968        124.20000           51.93
## 1549                         Guinea 1968        199.00000           37.37
## 1550                  Guinea-Bissau 1968               NA           45.09
## 1551                         Guyana 1968         56.00000           60.43
## 1552                          Haiti 1968        169.80000           46.33
## 1553                       Honduras 1968        109.50000           53.34
## 1554               Hong Kong, China 1968               NA           71.15
## 1555                        Hungary 1968         41.00000           69.38
## 1556                        Iceland 1968         13.90000           74.12
## 1557                          India 1968        146.90000           47.21
## 1558                      Indonesia 1968        119.80000           51.27
## 1559                           Iran 1968        176.80000           50.98
## 1560                           Iraq 1968         88.90000           55.24
## 1561                        Ireland 1968         20.70000           71.67
## 1562                         Israel 1968               NA           70.60
## 1563                          Italy 1968         32.00000           70.85
## 1564                        Jamaica 1968         47.90000           69.99
## 1565                          Japan 1968         15.10000           71.73
## 1566                         Jordan 1968         71.80000           59.66
## 1567                     Kazakhstan 1968               NA           62.53
## 1568                          Kenya 1968         95.20000           52.57
## 1569                       Kiribati 1968        103.20000           49.02
## 1570                    South Korea 1968         49.90000           59.44
## 1571                         Kuwait 1968         60.00000           67.80
## 1572                Kyrgyz Republic 1968               NA           59.58
## 1573                            Lao 1968               NA           44.15
## 1574                         Latvia 1968               NA           70.56
## 1575                        Lebanon 1968         49.10000           65.01
## 1576                        Lesotho 1968        137.00000           49.24
## 1577                        Liberia 1968        198.50000           38.91
## 1578                          Libya 1968        107.10000           56.69
## 1579                      Lithuania 1968         23.30000           71.68
## 1580                     Luxembourg 1968         21.30000           70.17
## 1581                   Macao, China 1968               NA           68.45
## 1582                 Macedonia, FYR 1968               NA           65.62
## 1583                     Madagascar 1968         91.50000           46.60
## 1584                         Malawi 1968        210.80000           40.73
## 1585                       Malaysia 1968         47.20000           64.17
## 1586                       Maldives 1968        186.90000           45.48
## 1587                           Mali 1968        200.30000           33.07
## 1588                          Malta 1968         27.20000           70.98
## 1589                     Mauritania 1968        112.20000           48.78
## 1590                      Mauritius 1968         66.50000           62.97
## 1591                         Mexico 1968         82.00000           60.91
## 1592          Micronesia, Fed. Sts. 1968               NA           59.73
## 1593                        Moldova 1968               NA           65.03
## 1594                       Mongolia 1968               NA           55.43
## 1595                     Montenegro 1968               NA           68.78
## 1596                        Morocco 1968        125.40000           53.46
## 1597                     Mozambique 1968        183.50000           42.78
## 1598                        Namibia 1968         62.30000           51.71
## 1599                          Nepal 1968        186.80000           43.51
## 1600                    Netherlands 1968         13.40000           73.60
## 1601                  New Caledonia 1968               NA           61.33
## 1602                    New Zealand 1968         17.50000           71.20
## 1603                      Nicaragua 1968        121.10000           57.47
## 1604                          Niger 1968        134.50000           37.88
## 1605                        Nigeria 1968        178.20000           33.47
## 1606                         Norway 1968         14.20000           74.07
## 1607                           Oman 1968        169.30000           51.62
## 1608                       Pakistan 1968        147.70000           52.95
## 1609                         Panama 1968         54.70000           65.65
## 1610               Papua New Guinea 1968        106.30000           44.74
## 1611                       Paraguay 1968         58.90000           68.63
## 1612                           Peru 1968        108.70000           53.74
## 1613                    Philippines 1968         57.00000           61.60
## 1614                         Poland 1968         34.40000           70.33
## 1615                       Portugal 1968         60.20000           66.88
## 1616                    Puerto Rico 1968               NA           70.70
## 1617                          Qatar 1968               NA           66.64
## 1618                        Romania 1968         64.10000           68.01
## 1619                         Russia 1968               NA           69.17
## 1620                         Rwanda 1968        125.50000           45.27
## 1621                      St. Lucia 1968               NA           61.45
## 1622 St. Vincent and the Grenadines 1968               NA           64.04
## 1623                          Samoa 1968               NA           56.15
## 1624                   Saudi Arabia 1968               NA           53.51
## 1625                        Senegal 1968        124.00000           38.90
## 1626                         Serbia 1968               NA           67.51
## 1627                     Seychelles 1968         59.30000           63.78
## 1628                   Sierra Leone 1968        197.30000           41.08
## 1629                      Singapore 1968         24.10000           66.84
## 1630                Slovak Republic 1968               NA           70.60
## 1631                       Slovenia 1968               NA           69.17
## 1632                Solomon Islands 1968         87.30000           55.16
## 1633                   South Africa 1968               NA           52.04
## 1634                          Spain 1968         30.10000           71.68
## 1635                      Sri Lanka 1968         55.70000           63.70
## 1636                          Sudan 1968         96.40000           53.36
## 1637                       Suriname 1968               NA           63.89
## 1638                      Swaziland 1968        124.10000           47.67
## 1639                         Sweden 1968         12.10000           73.99
## 1640                    Switzerland 1968         16.20000           72.75
## 1641                          Syria 1968         83.20000           57.83
## 1642                     Tajikistan 1968               NA           60.77
## 1643                       Tanzania 1968        131.40000           48.62
## 1644                       Thailand 1968         77.80000           58.96
## 1645                    Timor-Leste 1968               NA           43.96
## 1646                           Togo 1968        138.80000           46.41
## 1647                          Tonga 1968         44.90000           63.93
## 1648            Trinidad and Tobago 1968         45.70000           65.50
## 1649                        Tunisia 1968        134.80000           50.56
## 1650                         Turkey 1968        133.10000           53.21
## 1651                   Turkmenistan 1968               NA           58.42
## 1652                         Uganda 1968        115.50000           50.05
## 1653                        Ukraine 1968               NA           71.33
## 1654           United Arab Emirates 1968         83.80000           59.54
## 1655                 United Kingdom 1968         18.70000           71.68
## 1656                  United States 1968         21.30000           70.42
## 1657                        Uruguay 1968         50.50000           68.82
## 1658                     Uzbekistan 1968               NA           62.83
## 1659                        Vanuatu 1968         83.40000           50.56
## 1660                      Venezuela 1968         50.30000           64.77
## 1661             West Bank and Gaza 1968               NA           56.45
## 1662                        Vietnam 1968         58.20000           60.45
## 1663                          Yemen 1968        239.20000           39.87
## 1664                         Zambia 1968        112.20000           52.64
## 1665                       Zimbabwe 1968         74.70000           56.43
## 1666                        Albania 1969         80.20000           67.55
## 1667                        Algeria 1969        147.70000           51.95
## 1668                         Angola 1969               NA           40.95
## 1669            Antigua and Barbuda 1969               NA           66.81
## 1670                      Argentina 1969         60.00000           66.72
## 1671                        Armenia 1969               NA           71.10
## 1672                          Aruba 1969               NA           68.78
## 1673                      Australia 1969         18.10000           71.11
## 1674                        Austria 1969         25.30000           70.02
## 1675                     Azerbaijan 1969               NA           65.14
## 1676                        Bahamas 1969         25.50000           64.39
## 1677                        Bahrain 1969         62.40000           62.22
## 1678                     Bangladesh 1969        150.40000           47.09
## 1679                       Barbados 1969         43.10000           65.91
## 1680                        Belarus 1969               NA           72.47
## 1681                        Belgium 1969         21.30000           70.63
## 1682                         Belize 1969         72.80000           65.21
## 1683                          Benin 1969        159.20000           43.31
## 1684                         Bhutan 1969        186.00000           41.45
## 1685                        Bolivia 1969        147.50000           47.05
## 1686         Bosnia and Herzegovina 1969               NA           68.82
## 1687                       Botswana 1969         88.30000           53.73
## 1688                         Brazil 1969        105.00000           59.31
## 1689                         Brunei 1969               NA           66.97
## 1690                       Bulgaria 1969         35.80000           70.48
## 1691                   Burkina Faso 1969        149.70000           39.78
## 1692                        Burundi 1969        146.20000           42.65
## 1693                       Cambodia 1969               NA           44.03
## 1694                       Cameroon 1969        131.50000           48.37
## 1695                         Canada 1969         19.40000           72.39
## 1696                     Cape Verde 1969        121.40000           53.00
## 1697       Central African Republic 1969        139.80000           42.57
## 1698                           Chad 1969        137.30000           45.12
## 1699                          Chile 1969         69.10000           61.17
## 1700                          China 1969         84.10000           59.38
## 1701                       Colombia 1969         72.70000           62.43
## 1702                        Comoros 1969               NA           48.09
## 1703               Congo, Dem. Rep. 1969        150.70000           47.63
## 1704                    Congo, Rep. 1969         90.60000           52.54
## 1705                     Costa Rica 1969         62.70000           66.84
## 1706                  Cote d'Ivoire 1969        165.40000           44.53
## 1707                        Croatia 1969               NA           68.22
## 1708                           Cuba 1969         39.00000           69.32
## 1709                         Cyprus 1969               NA           72.47
## 1710                 Czech Republic 1969               NA           69.62
## 1711                        Denmark 1969         14.60000           73.36
## 1712                       Djibouti 1969               NA           50.99
## 1713             Dominican Republic 1969         87.50000           60.16
## 1714                        Ecuador 1969         98.20000           58.76
## 1715                          Egypt 1969        164.30000           52.25
## 1716                    El Salvador 1969        108.40000           57.24
## 1717              Equatorial Guinea 1969               NA           40.82
## 1718                        Eritrea 1969        128.70000           42.56
## 1719                        Estonia 1969               NA           70.40
## 1720                       Ethiopia 1969        142.50000           41.65
## 1721                           Fiji 1969         43.50000           59.26
## 1722                        Finland 1969         13.90000           69.70
## 1723                         France 1969         15.80000           71.40
## 1724               French Polynesia 1969               NA           59.83
## 1725                          Gabon 1969               NA           44.74
## 1726                         Gambia 1969        128.30000           42.30
## 1727                        Georgia 1969               NA           66.93
## 1728                        Germany 1969         22.70000           70.48
## 1729                          Ghana 1969        120.50000           49.78
## 1730                         Greece 1969         36.10000           70.88
## 1731                      Greenland 1969               NA           64.82
## 1732                        Grenada 1969               NA           64.27
## 1733                      Guatemala 1969        121.20000           52.72
## 1734                         Guinea 1969        197.10000           37.61
## 1735                  Guinea-Bissau 1969               NA           45.29
## 1736                         Guyana 1969         55.60000           60.59
## 1737                          Haiti 1969        166.60000           46.73
## 1738                       Honduras 1969        105.80000           54.00
## 1739               Hong Kong, China 1969               NA           71.53
## 1740                        Hungary 1969         39.90000           69.45
## 1741                        Iceland 1969         13.40000           73.90
## 1742                          India 1969        144.80000           47.93
## 1743                      Indonesia 1969        116.40000           52.00
## 1744                           Iran 1969        163.10000           51.67
## 1745                           Iraq 1969         85.10000           55.96
## 1746                        Ireland 1969         19.70000           71.62
## 1747                         Israel 1969               NA           70.78
## 1748                          Italy 1969         30.90000           70.87
## 1749                        Jamaica 1969         46.30000           70.36
## 1750                          Japan 1969         14.20000           71.96
## 1751                         Jordan 1969         68.60000           60.42
## 1752                     Kazakhstan 1969               NA           62.92
## 1753                          Kenya 1969         93.30000           53.19
## 1754                       Kiribati 1969        100.00000           49.42
## 1755                    South Korea 1969         45.70000           60.35
## 1756                         Kuwait 1969         56.60000           68.38
## 1757                Kyrgyz Republic 1969               NA           59.95
## 1758                            Lao 1969               NA           44.41
## 1759                         Latvia 1969               NA           70.29
## 1760                        Lebanon 1969         48.60000           65.27
## 1761                        Lesotho 1969        134.50000           49.43
## 1762                        Liberia 1969        194.90000           39.49
## 1763                          Libya 1969        101.40000           57.88
## 1764                      Lithuania 1969         22.10000           71.30
## 1765                     Luxembourg 1969         20.30000           69.73
## 1766                   Macao, China 1969               NA           68.83
## 1767                 Macedonia, FYR 1969               NA           66.14
## 1768                     Madagascar 1969         92.40000           47.18
## 1769                         Malawi 1969        209.60000           41.16
## 1770                       Malaysia 1969         45.30000           64.63
## 1771                       Maldives 1969        180.50000           46.44
## 1772                           Mali 1969        197.90000           33.77
## 1773                          Malta 1969         26.00000           71.29
## 1774                     Mauritania 1969        110.00000           49.27
## 1775                      Mauritius 1969         62.80000           63.05
## 1776                         Mexico 1969         79.80000           61.32
## 1777          Micronesia, Fed. Sts. 1969               NA           60.10
## 1778                        Moldova 1969               NA           65.23
## 1779                       Mongolia 1969               NA           56.02
## 1780                     Montenegro 1969               NA           69.36
## 1781                        Morocco 1969        123.00000           53.91
## 1782                     Mozambique 1969        182.60000           43.37
## 1783                        Namibia 1969         62.50000           52.26
## 1784                          Nepal 1969        182.60000           43.97
## 1785                    Netherlands 1969         13.10000           73.51
## 1786                  New Caledonia 1969               NA           61.89
## 1787                    New Zealand 1969         17.20000           71.57
## 1788                      Nicaragua 1969        118.90000           58.33
## 1789                          Niger 1969        136.10000           38.05
## 1790                        Nigeria 1969        173.70000           31.63
## 1791                         Norway 1969         13.70000           73.78
## 1792                           Oman 1969        160.40000           52.43
## 1793                       Pakistan 1969        144.30000           53.52
## 1794                         Panama 1969         53.20000           66.15
## 1795               Papua New Guinea 1969        103.10000           45.53
## 1796                       Paraguay 1969         58.40000           68.90
## 1797                           Peru 1969        106.00000           54.52
## 1798                    Philippines 1969         56.10000           61.94
## 1799                         Poland 1969         33.40000           69.83
## 1800                       Portugal 1969         58.10000           66.49
## 1801                    Puerto Rico 1969               NA           71.03
## 1802                          Qatar 1969         53.50000           67.29
## 1803                        Romania 1969         60.90000           68.16
## 1804                         Russia 1969               NA           68.65
## 1805                         Rwanda 1969        127.30000           45.44
## 1806                      St. Lucia 1969               NA           61.94
## 1807 St. Vincent and the Grenadines 1969         57.50000           64.46
## 1808                          Samoa 1969               NA           56.75
## 1809                   Saudi Arabia 1969               NA           54.55
## 1810                        Senegal 1969        123.10000           39.17
## 1811                         Serbia 1969               NA           67.94
## 1812                     Seychelles 1969         56.80000           64.18
## 1813                   Sierra Leone 1969        194.10000           42.08
## 1814                      Singapore 1969         22.90000           67.09
## 1815                Slovak Republic 1969               NA           69.91
## 1816                       Slovenia 1969               NA           69.23
## 1817                Solomon Islands 1969         81.90000           55.74
## 1818                   South Africa 1969               NA           52.41
## 1819                          Spain 1969         27.80000           71.21
## 1820                      Sri Lanka 1969         54.60000           64.21
## 1821                          Sudan 1969         95.50000           53.82
## 1822                       Suriname 1969               NA           64.28
## 1823                      Swaziland 1969        121.70000           48.21
## 1824                         Sweden 1969         11.70000           74.11
## 1825                    Switzerland 1969         15.60000           72.76
## 1826                          Syria 1969         79.20000           58.57
## 1827                     Tajikistan 1969               NA           61.17
## 1828                       Tanzania 1969        129.50000           49.07
## 1829                       Thailand 1969         74.80000           59.39
## 1830                    Timor-Leste 1969               NA           44.86
## 1831                           Togo 1969        135.80000           47.07
## 1832                          Tonga 1969         42.10000           64.26
## 1833            Trinidad and Tobago 1969         44.80000           65.60
## 1834                        Tunisia 1969        128.40000           51.74
## 1835                         Turkey 1969        129.60000           53.91
## 1836                   Turkmenistan 1969               NA           58.80
## 1837                         Uganda 1969        114.20000           50.43
## 1838                        Ukraine 1969               NA           70.70
## 1839           United Arab Emirates 1969         77.20000           60.33
## 1840                 United Kingdom 1969         18.40000           71.64
## 1841                  United States 1969         20.60000           70.66
## 1842                        Uruguay 1969         49.60000           68.84
## 1843                     Uzbekistan 1969               NA           63.20
## 1844                        Vanuatu 1969         80.40000           51.12
## 1845                      Venezuela 1969         49.20000           65.30
## 1846             West Bank and Gaza 1969               NA           57.22
## 1847                        Vietnam 1969         57.30000           59.63
## 1848                          Yemen 1969        230.00000           40.71
## 1849                         Zambia 1969        111.10000           53.25
## 1850                       Zimbabwe 1969         73.40000           56.83
## 1851                        Albania 1970         76.80000           67.83
## 1852                        Algeria 1970        146.00000           52.41
## 1853                         Angola 1970        180.00000           41.50
## 1854            Antigua and Barbuda 1970               NA           67.19
## 1855                      Argentina 1970         59.50000           67.01
## 1856                        Armenia 1970               NA           71.47
## 1857                          Aruba 1970               NA           69.14
## 1858                      Australia 1970         17.80000           70.78
## 1859                        Austria 1970         25.00000           70.07
## 1860                     Azerbaijan 1970               NA           65.48
## 1861                        Bahamas 1970         26.00000           64.61
## 1862                        Bahrain 1970         57.20000           63.10
## 1863                     Bangladesh 1970        149.50000           46.31
## 1864                       Barbados 1970         41.10000           66.31
## 1865                        Belarus 1970               NA           71.94
## 1866                        Belgium 1970         20.60000           70.89
## 1867                         Belize 1970         70.30000           65.72
## 1868                          Benin 1970        157.10000           43.93
## 1869                         Bhutan 1970        181.20000           42.31
## 1870                        Bolivia 1970        144.40000           47.44
## 1871         Bosnia and Herzegovina 1970         60.00000           69.49
## 1872                       Botswana 1970         85.30000           54.30
## 1873                         Brazil 1970        102.50000           59.73
## 1874                         Brunei 1970         58.00000           67.38
## 1875                       Bulgaria 1970         34.10000           71.32
## 1876                   Burkina Faso 1970        149.30000           40.27
## 1877                        Burundi 1970        146.40000           42.76
## 1878                       Cambodia 1970               NA           43.28
## 1879                       Cameroon 1970        126.20000           48.97
## 1880                         Canada 1970         18.50000           72.58
## 1881                     Cape Verde 1970        112.40000           53.78
## 1882       Central African Republic 1970        137.00000           43.36
## 1883                           Chad 1970        135.90000           45.72
## 1884                          Chile 1970         67.60000           61.74
## 1885                          China 1970         80.40000           61.00
## 1886                       Colombia 1970         70.40000           62.83
## 1887                        Comoros 1970        151.50000           48.61
## 1888               Congo, Dem. Rep. 1970        149.00000           48.13
## 1889                    Congo, Rep. 1970         88.50000           52.85
## 1890                     Costa Rica 1970         61.20000           67.34
## 1891                  Cote d'Ivoire 1970        161.00000           45.38
## 1892                        Croatia 1970         34.00000           68.54
## 1893                           Cuba 1970         37.40000           69.84
## 1894                         Cyprus 1970         29.00000           72.73
## 1895                 Czech Republic 1970         21.00000           69.72
## 1896                        Denmark 1970         13.90000           73.49
## 1897                       Djibouti 1970               NA           51.75
## 1898             Dominican Republic 1970         85.70000           60.83
## 1899                        Ecuador 1970         96.00000           59.21
## 1900                          Egypt 1970        162.00000           52.54
## 1901                    El Salvador 1970        106.70000           57.57
## 1902              Equatorial Guinea 1970               NA           41.17
## 1903                        Eritrea 1970        127.30000           43.02
## 1904                        Estonia 1970         21.00000           70.51
## 1905                       Ethiopia 1970        142.50000           41.90
## 1906                           Fiji 1970         43.10000           59.61
## 1907                        Finland 1970         13.20000           70.40
## 1908                         France 1970         15.10000           72.29
## 1909               French Polynesia 1970               NA           60.18
## 1910                          Gabon 1970               NA           45.55
## 1911                         Gambia 1970        126.00000           43.31
## 1912                        Georgia 1970               NA           67.24
## 1913                        Germany 1970         22.10000           70.72
## 1914                          Ghana 1970        120.10000           50.08
## 1915                         Greece 1970         33.70000           71.20
## 1916                      Greenland 1970               NA           65.19
## 1917                        Grenada 1970               NA           64.62
## 1918                      Guatemala 1970        118.20000           53.50
## 1919                         Guinea 1970        195.20000           37.89
## 1920                  Guinea-Bissau 1970               NA           45.50
## 1921                         Guyana 1970         55.40000           60.75
## 1922                          Haiti 1970        163.40000           47.10
## 1923                       Honduras 1970        102.20000           54.68
## 1924               Hong Kong, China 1970               NA           71.89
## 1925                        Hungary 1970         39.00000           69.29
## 1926                        Iceland 1970         12.80000           74.00
## 1927                          India 1970        142.80000           48.65
## 1928                      Indonesia 1970        113.10000           52.71
## 1929                           Iran 1970        150.80000           52.43
## 1930                           Iraq 1970         81.50000           56.61
## 1931                        Ireland 1970         19.00000           71.68
## 1932                         Israel 1970         24.00000           70.96
## 1933                          Italy 1970         29.70000           71.62
## 1934                        Jamaica 1970         44.80000           70.72
## 1935                          Japan 1970         13.40000           72.05
## 1936                         Jordan 1970         65.70000           61.15
## 1937                     Kazakhstan 1970               NA           63.27
## 1938                          Kenya 1970         91.30000           53.83
## 1939                       Kiribati 1970         97.30000           49.82
## 1940                    South Korea 1970         41.40000           61.22
## 1941                         Kuwait 1970         53.50000           68.93
## 1942                Kyrgyz Republic 1970         92.80000           60.30
## 1943                            Lao 1970        141.10000           44.66
## 1944                         Latvia 1970         21.00000           70.31
## 1945                        Lebanon 1970         48.10000           65.52
## 1946                        Lesotho 1970        131.60000           49.67
## 1947                        Liberia 1970        191.30000           40.10
## 1948                          Libya 1970         96.00000           59.01
## 1949                      Lithuania 1970         20.50000           71.16
## 1950                     Luxembourg 1970         19.30000           69.47
## 1951                   Macao, China 1970               NA           69.20
## 1952                 Macedonia, FYR 1970         85.00000           66.63
## 1953                     Madagascar 1970         93.20000           47.77
## 1954                         Malawi 1970        207.70000           41.62
## 1955                       Malaysia 1970         43.50000           65.08
## 1956                       Maldives 1970        174.00000           47.37
## 1957                           Mali 1970        195.70000           34.51
## 1958                          Malta 1970         24.70000           71.60
## 1959                     Mauritania 1970        108.50000           49.77
## 1960                      Mauritius 1970         60.30000           63.14
## 1961                         Mexico 1970         77.50000           61.77
## 1962          Micronesia, Fed. Sts. 1970               NA           60.48
## 1963                        Moldova 1970         50.00000           65.39
## 1964                       Mongolia 1970               NA           56.58
## 1965                     Montenegro 1970               NA           69.94
## 1966                        Morocco 1970        120.80000           54.34
## 1967                     Mozambique 1970        181.90000           43.97
## 1968                        Namibia 1970         62.60000           52.81
## 1969                          Nepal 1970        178.60000           44.43
## 1970                    Netherlands 1970         12.60000           73.57
## 1971                  New Caledonia 1970               NA           62.42
## 1972                    New Zealand 1970         16.90000           71.35
## 1973                      Nicaragua 1970        116.60000           59.18
## 1974                          Niger 1970        137.60000           38.24
## 1975                        Nigeria 1970        168.90000           41.79
## 1976                         Norway 1970         13.10000           74.19
## 1977                           Oman 1970        151.80000           53.26
## 1978                       Pakistan 1970        141.10000           54.06
## 1979                         Panama 1970         51.40000           66.66
## 1980               Papua New Guinea 1970        100.10000           46.27
## 1981                       Paraguay 1970         58.00000           69.20
## 1982                           Peru 1970        103.40000           55.36
## 1983                    Philippines 1970         55.40000           62.26
## 1984                         Poland 1970         32.20000           69.96
## 1985                       Portugal 1970         55.40000           67.14
## 1986                    Puerto Rico 1970               NA           71.35
## 1987                          Qatar 1970         50.40000           67.91
## 1988                        Romania 1970         57.20000           68.41
## 1989                         Russia 1970         35.40000           68.76
## 1990                         Rwanda 1970        129.40000           45.58
## 1991                      St. Lucia 1970         57.50000           62.47
## 1992 St. Vincent and the Grenadines 1970         58.60000           64.84
## 1993                          Samoa 1970         73.00000           57.33
## 1994                   Saudi Arabia 1970        118.00000           55.65
## 1995                        Senegal 1970        121.70000           39.59
## 1996                         Serbia 1970               NA           68.34
## 1997                     Seychelles 1970         54.10000           64.62
## 1998                   Sierra Leone 1970        191.00000           43.15
## 1999                      Singapore 1970         22.00000           67.40
## 2000                Slovak Republic 1970         25.00000           69.84
## 2001                       Slovenia 1970         25.00000           69.32
## 2002                Solomon Islands 1970         76.50000           56.31
## 2003                   South Africa 1970               NA           52.77
## 2004                          Spain 1970         25.50000           72.19
## 2005                      Sri Lanka 1970         53.60000           64.69
## 2006                          Sudan 1970         94.70000           54.26
## 2007                       Suriname 1970               NA           64.66
## 2008                      Swaziland 1970        119.30000           48.79
## 2009                         Sweden 1970         11.30000           74.66
## 2010                    Switzerland 1970         15.00000           73.18
## 2011                          Syria 1970         75.30000           59.31
## 2012                     Tajikistan 1970        108.00000           61.55
## 2013                       Tanzania 1970        127.60000           49.53
## 2014                       Thailand 1970         71.80000           59.86
## 2015                    Timor-Leste 1970               NA           45.56
## 2016                           Togo 1970        132.80000           47.72
## 2017                          Tonga 1970         39.60000           64.58
## 2018            Trinidad and Tobago 1970         43.90000           65.73
## 2019                        Tunisia 1970        122.20000           52.94
## 2020                         Turkey 1970        126.20000           54.59
## 2021                   Turkmenistan 1970               NA           59.15
## 2022                         Uganda 1970        113.50000           50.74
## 2023                        Ukraine 1970         27.96181           70.59
## 2024           United Arab Emirates 1970         70.90000           61.08
## 2025                 United Kingdom 1970         18.00000           71.89
## 2026                  United States 1970         19.90000           70.92
## 2027                        Uruguay 1970         48.60000           68.88
## 2028                     Uzbekistan 1970               NA           63.54
## 2029                        Vanuatu 1970         77.50000           51.67
## 2030                      Venezuela 1970         48.10000           65.80
## 2031             West Bank and Gaza 1970               NA           57.97
## 2032                        Vietnam 1970         56.40000           58.78
## 2033                          Yemen 1970        221.10000           41.55
## 2034                         Zambia 1970        109.30000           53.88
## 2035                       Zimbabwe 1970         72.40000           57.22
## 2036                        Albania 1971         74.10000           68.16
## 2037                        Algeria 1971        143.60000           52.88
## 2038                         Angola 1971               NA           42.06
## 2039            Antigua and Barbuda 1971               NA           67.56
## 2040                      Argentina 1971         58.80000           67.32
## 2041                        Armenia 1971               NA           71.79
## 2042                          Aruba 1971               NA           69.50
## 2043                      Australia 1971         17.40000           71.38
## 2044                        Austria 1971         24.70000           70.27
## 2045                     Azerbaijan 1971               NA           65.75
## 2046                        Bahamas 1971         26.40000           64.85
## 2047                        Bahrain 1971         52.50000           63.92
## 2048                     Bangladesh 1971        148.90000           45.74
## 2049                       Barbados 1971         39.20000           66.71
## 2050                        Belarus 1971               NA           72.56
## 2051                        Belgium 1971         19.70000           71.01
## 2052                         Belize 1971         67.90000           66.21
## 2053                          Benin 1971        154.90000           44.55
## 2054                         Bhutan 1971        176.20000           43.23
## 2055                        Bolivia 1971        141.30000           47.86
## 2056         Bosnia and Herzegovina 1971               NA           70.17
## 2057                       Botswana 1971         82.20000           54.90
## 2058                         Brazil 1971        100.00000           60.14
## 2059                         Brunei 1971               NA           67.79
## 2060                       Bulgaria 1971         32.60000           70.93
## 2061                   Burkina Faso 1971        148.50000           40.75
## 2062                        Burundi 1971        146.30000           42.91
## 2063                       Cambodia 1971               NA           41.67
## 2064                       Cameroon 1971        121.60000           49.59
## 2065                         Canada 1971         17.70000           72.91
## 2066                     Cape Verde 1971        104.20000           54.65
## 2067       Central African Republic 1971        134.50000           44.19
## 2068                           Chad 1971        134.50000           46.33
## 2069                          Chile 1971         66.70000           62.34
## 2070                          China 1971         76.80000           62.04
## 2071                       Colombia 1971         68.10000           63.23
## 2072                        Comoros 1971        148.10000           49.12
## 2073               Congo, Dem. Rep. 1971        147.50000           48.60
## 2074                    Congo, Rep. 1971         86.50000           53.14
## 2075                     Costa Rica 1971         57.80000           67.86
## 2076                  Cote d'Ivoire 1971        156.40000           46.27
## 2077                        Croatia 1971               NA           68.86
## 2078                           Cuba 1971         34.50000           70.34
## 2079                         Cyprus 1971               NA           72.99
## 2080                 Czech Republic 1971               NA           69.96
## 2081                        Denmark 1971         13.30000           73.55
## 2082                       Djibouti 1971               NA           52.51
## 2083             Dominican Republic 1971         83.70000           61.47
## 2084                        Ecuador 1971         93.70000           59.67
## 2085                          Egypt 1971        159.60000           52.88
## 2086                    El Salvador 1971        104.90000           57.85
## 2087              Equatorial Guinea 1971               NA           41.52
## 2088                        Eritrea 1971        126.20000           43.47
## 2089                        Estonia 1971               NA           70.71
## 2090                       Ethiopia 1971        142.50000           42.14
## 2091                           Fiji 1971         42.90000           59.96
## 2092                        Finland 1971         12.60000           70.22
## 2093                         France 1971         14.40000           72.27
## 2094               French Polynesia 1971               NA           60.52
## 2095                          Gabon 1971               NA           46.35
## 2096                         Gambia 1971        123.80000           44.36
## 2097                        Georgia 1971               NA           67.54
## 2098                        Germany 1971         21.40000           70.94
## 2099                          Ghana 1971        119.50000           50.39
## 2100                         Greece 1971         31.90000           71.53
## 2101                      Greenland 1971               NA           65.01
## 2102                        Grenada 1971               NA           64.97
## 2103                      Guatemala 1971        115.20000           54.27
## 2104                         Guinea 1971        193.20000           38.20
## 2105                  Guinea-Bissau 1971               NA           45.71
## 2106                         Guyana 1971         55.20000           60.92
## 2107                          Haiti 1971        160.10000           47.45
## 2108                       Honduras 1971         98.70000           55.37
## 2109               Hong Kong, China 1971               NA           72.25
## 2110                        Hungary 1971         38.50000           69.19
## 2111                        Iceland 1971         12.30000           73.75
## 2112                          India 1971        140.60000           49.35
## 2113                      Indonesia 1971        109.90000           53.40
## 2114                           Iran 1971        126.00000           53.28
## 2115                           Iraq 1971         78.10000           57.21
## 2116                        Ireland 1971         18.50000           72.50
## 2117                         Israel 1971               NA           71.13
## 2118                          Italy 1971         28.20000           71.87
## 2119                        Jamaica 1971         43.30000           71.06
## 2120                          Japan 1971         12.60000           72.87
## 2121                         Jordan 1971         62.90000           61.87
## 2122                     Kazakhstan 1971         68.20000           63.60
## 2123                          Kenya 1971         89.30000           54.45
## 2124                       Kiribati 1971         94.80000           50.21
## 2125                    South Korea 1971         37.30000           62.02
## 2126                         Kuwait 1971         50.60000           69.46
## 2127                Kyrgyz Republic 1971         91.80000           60.61
## 2128                            Lao 1971        139.60000           44.91
## 2129                         Latvia 1971               NA           70.66
## 2130                        Lebanon 1971         47.60000           65.75
## 2131                        Lesotho 1971        128.70000           49.96
## 2132                        Liberia 1971        187.80000           40.75
## 2133                          Libya 1971         90.90000           60.11
## 2134                      Lithuania 1971         18.90000           72.10
## 2135                     Luxembourg 1971         18.10000           69.35
## 2136                   Macao, China 1971               NA           69.56
## 2137                 Macedonia, FYR 1971               NA           67.08
## 2138                     Madagascar 1971         94.20000           48.36
## 2139                         Malawi 1971        204.80000           42.09
## 2140                       Malaysia 1971         41.70000           65.51
## 2141                       Maldives 1971        167.10000           48.25
## 2142                           Mali 1971        193.50000           35.27
## 2143                          Malta 1971         23.60000           71.90
## 2144                     Mauritania 1971        107.50000           50.25
## 2145                      Mauritius 1971         59.40000           63.27
## 2146                         Mexico 1971         75.10000           62.25
## 2147          Micronesia, Fed. Sts. 1971               NA           60.89
## 2148                        Moldova 1971         49.70000           65.48
## 2149                       Mongolia 1971               NA           57.08
## 2150                     Montenegro 1971               NA           70.48
## 2151                        Morocco 1971        118.80000           54.77
## 2152                     Mozambique 1971        181.20000           44.58
## 2153                        Namibia 1971         62.80000           53.36
## 2154                          Nepal 1971        174.60000           44.91
## 2155                    Netherlands 1971         12.20000           73.81
## 2156                  New Caledonia 1971               NA           62.95
## 2157                    New Zealand 1971         16.50000           71.80
## 2158                      Nicaragua 1971        114.00000           60.01
## 2159                          Niger 1971        139.10000           38.45
## 2160                        Nigeria 1971        164.10000           46.56
## 2161                         Norway 1971         12.70000           74.30
## 2162                           Oman 1971        143.90000           54.14
## 2163                       Pakistan 1971        138.30000           54.60
## 2164                         Panama 1971         49.50000           67.18
## 2165               Papua New Guinea 1971         97.10000           46.97
## 2166                       Paraguay 1971         57.40000           69.49
## 2167                           Peru 1971        100.90000           56.20
## 2168                    Philippines 1971         54.90000           62.54
## 2169                         Poland 1971         30.60000           69.76
## 2170                       Portugal 1971         51.80000           66.91
## 2171                    Puerto Rico 1971               NA           71.66
## 2172                          Qatar 1971         47.50000           68.49
## 2173                        Romania 1971         53.40000           68.73
## 2174                         Russia 1971         34.10000           69.02
## 2175                         Rwanda 1971        131.50000           45.71
## 2176                      St. Lucia 1971         52.60000           63.04
## 2177 St. Vincent and the Grenadines 1971         59.60000           65.16
## 2178                          Samoa 1971               NA           57.92
## 2179                   Saudi Arabia 1971               NA           56.82
## 2180                        Senegal 1971        119.80000           40.18
## 2181                         Serbia 1971               NA           68.70
## 2182                     Seychelles 1971         51.40000           65.11
## 2183                   Sierra Leone 1971        188.00000           44.28
## 2184                      Singapore 1971         21.00000           67.75
## 2185                Slovak Republic 1971               NA           69.99
## 2186                       Slovenia 1971               NA           69.47
## 2187                Solomon Islands 1971         71.40000           56.91
## 2188                   South Africa 1971               NA           53.11
## 2189                          Spain 1971         24.00000           71.79
## 2190                      Sri Lanka 1971         52.70000           65.15
## 2191                          Sudan 1971         94.00000           54.68
## 2192                       Suriname 1971               NA           65.00
## 2193                      Swaziland 1971        116.60000           49.40
## 2194                         Sweden 1971         10.90000           74.58
## 2195                    Switzerland 1971         14.30000           73.30
## 2196                          Syria 1971         71.70000           60.08
## 2197                     Tajikistan 1971               NA           61.90
## 2198                       Tanzania 1971        125.80000           50.03
## 2199                       Thailand 1971         68.70000           60.33
## 2200                    Timor-Leste 1971               NA           45.80
## 2201                           Togo 1971        130.00000           48.36
## 2202                          Tonga 1971         37.40000           64.88
## 2203            Trinidad and Tobago 1971         43.10000           65.91
## 2204                        Tunisia 1971        116.40000           54.16
## 2205                         Turkey 1971        122.80000           55.27
## 2206                   Turkmenistan 1971               NA           59.46
## 2207                         Uganda 1971        113.20000           50.99
## 2208                        Ukraine 1971         27.90000           70.81
## 2209           United Arab Emirates 1971         65.10000           61.78
## 2210                 United Kingdom 1971         17.70000           72.20
## 2211                  United States 1971         19.10000           71.24
## 2212                        Uruguay 1971         47.90000           68.94
## 2213                     Uzbekistan 1971               NA           63.86
## 2214                        Vanuatu 1971         74.60000           52.21
## 2215                      Venezuela 1971         46.80000           66.27
## 2216             West Bank and Gaza 1971               NA           58.73
## 2217                        Vietnam 1971         55.50000           58.17
## 2218                          Yemen 1971        212.50000           42.40
## 2219                         Zambia 1971        106.70000           54.51
## 2220                       Zimbabwe 1971         71.60000           57.63
## 2221                        Albania 1972         71.00000           68.53
## 2222                        Algeria 1972        140.60000           53.38
## 2223                         Angola 1972               NA           42.62
## 2224            Antigua and Barbuda 1972               NA           67.94
## 2225                      Argentina 1972         58.00000           67.64
## 2226                        Armenia 1972               NA           72.02
## 2227                          Aruba 1972               NA           69.85
## 2228                      Australia 1972         16.80000           71.90
## 2229                        Austria 1972         24.10000           70.59
## 2230                     Azerbaijan 1972               NA           65.93
## 2231                        Bahamas 1972         26.80000           65.08
## 2232                        Bahrain 1972         48.10000           64.67
## 2233                     Bangladesh 1972        148.20000           45.52
## 2234                       Barbados 1972         37.30000           67.09
## 2235                        Belarus 1972               NA           72.26
## 2236                        Belgium 1972         18.70000           71.35
## 2237                         Belize 1972         65.40000           66.66
## 2238                          Benin 1972        152.50000           45.16
## 2239                         Bhutan 1972        171.20000           44.20
## 2240                        Bolivia 1972        138.00000           48.34
## 2241         Bosnia and Herzegovina 1972               NA           70.84
## 2242                       Botswana 1972         79.10000           55.54
## 2243                         Brazil 1972         97.40000           60.56
## 2244                         Brunei 1972               NA           68.19
## 2245                       Bulgaria 1972         31.60000           70.96
## 2246                   Burkina Faso 1972        147.10000           41.25
## 2247                        Burundi 1972        146.20000           43.10
## 2248                       Cambodia 1972               NA           39.73
## 2249                       Cameroon 1972        118.20000           50.22
## 2250                         Canada 1972         16.70000           72.81
## 2251                     Cape Verde 1972         96.50000           55.57
## 2252       Central African Republic 1972        132.10000           45.04
## 2253                           Chad 1972        131.80000           46.91
## 2254                          Chile 1972         65.70000           62.98
## 2255                          China 1972         73.30000           61.36
## 2256                       Colombia 1972         65.90000           63.64
## 2257                        Comoros 1972        145.10000           49.63
## 2258               Congo, Dem. Rep. 1972        145.90000           49.05
## 2259                    Congo, Rep. 1972         84.40000           53.42
## 2260                     Costa Rica 1972         52.50000           68.40
## 2261                  Cote d'Ivoire 1972        151.30000           47.15
## 2262                        Croatia 1972               NA           69.14
## 2263                           Cuba 1972         30.90000           70.82
## 2264                         Cyprus 1972               NA           73.23
## 2265                 Czech Republic 1972               NA           70.49
## 2266                        Denmark 1972         12.50000           73.59
## 2267                       Djibouti 1972               NA           53.20
## 2268             Dominican Republic 1972         81.60000           62.09
## 2269                        Ecuador 1972         91.20000           60.16
## 2270                          Egypt 1972        156.80000           53.31
## 2271                    El Salvador 1972        102.90000           58.07
## 2272              Equatorial Guinea 1972               NA           41.87
## 2273                        Eritrea 1972        124.80000           43.92
## 2274                        Estonia 1972               NA           70.48
## 2275                       Ethiopia 1972        142.50000           41.98
## 2276                           Fiji 1972         42.70000           60.29
## 2277                        Finland 1972         12.00000           70.91
## 2278                         France 1972         13.70000           72.52
## 2279               French Polynesia 1972               NA           60.84
## 2280                          Gabon 1972               NA           47.13
## 2281                         Gambia 1972        121.50000           45.42
## 2282                        Georgia 1972               NA           67.85
## 2283                        Germany 1972         20.60000           71.16
## 2284                          Ghana 1972        118.20000           50.70
## 2285                         Greece 1972         30.80000           71.85
## 2286                      Greenland 1972               NA           64.84
## 2287                        Grenada 1972               NA           65.29
## 2288                      Guatemala 1972        112.10000           55.00
## 2289                         Guinea 1972        191.10000           38.57
## 2290                  Guinea-Bissau 1972               NA           45.91
## 2291                         Guyana 1972         55.00000           61.08
## 2292                          Haiti 1972        156.60000           47.81
## 2293                       Honduras 1972         95.20000           56.07
## 2294               Hong Kong, China 1972               NA           72.58
## 2295                        Hungary 1972         38.40000           69.82
## 2296                        Iceland 1972         11.80000           74.66
## 2297                          India 1972        138.30000           50.08
## 2298                      Indonesia 1972        106.70000           54.09
## 2299                           Iran 1972        120.70000           54.24
## 2300                           Iraq 1972         74.90000           57.77
## 2301                        Ireland 1972         18.30000           71.86
## 2302                         Israel 1972               NA           71.33
## 2303                          Italy 1972         26.50000           72.15
## 2304                        Jamaica 1972         41.80000           71.39
## 2305                          Japan 1972         11.90000           73.39
## 2306                         Jordan 1972         60.20000           62.59
## 2307                     Kazakhstan 1972         66.90000           63.89
## 2308                          Kenya 1972         87.30000           55.08
## 2309                       Kiribati 1972         92.60000           50.61
## 2310                    South Korea 1972         33.30000           62.73
## 2311                         Kuwait 1972         47.90000           69.97
## 2312                Kyrgyz Republic 1972         90.80000           60.88
## 2313                            Lao 1972        138.20000           45.16
## 2314                         Latvia 1972               NA           70.35
## 2315                        Lebanon 1972         47.20000           65.98
## 2316                        Lesotho 1972        125.40000           50.31
## 2317                        Liberia 1972        184.40000           41.43
## 2318                          Libya 1972         86.00000           61.16
## 2319                      Lithuania 1972         18.40000           71.34
## 2320                     Luxembourg 1972         17.10000           70.59
## 2321                   Macao, China 1972               NA           69.91
## 2322                 Macedonia, FYR 1972               NA           67.48
## 2323                     Madagascar 1972         95.30000           48.94
## 2324                         Malawi 1972        200.60000           42.55
## 2325                       Malaysia 1972         39.80000           65.93
## 2326                       Maldives 1972        159.70000           49.12
## 2327                           Mali 1972        191.10000           36.04
## 2328                          Malta 1972         22.30000           72.20
## 2329                     Mauritania 1972        107.00000           50.73
## 2330                      Mauritius 1972         58.70000           63.45
## 2331                         Mexico 1972         72.70000           62.75
## 2332          Micronesia, Fed. Sts. 1972               NA           61.30
## 2333                        Moldova 1972         48.50000           65.55
## 2334                       Mongolia 1972               NA           57.49
## 2335                     Montenegro 1972               NA           70.99
## 2336                        Morocco 1972        116.80000           55.19
## 2337                     Mozambique 1972        180.50000           45.21
## 2338                        Namibia 1972         62.90000           53.91
## 2339                          Nepal 1972        170.90000           45.41
## 2340                    Netherlands 1972         11.70000           73.72
## 2341                  New Caledonia 1972               NA           63.46
## 2342                    New Zealand 1972         16.20000           71.92
## 2343                      Nicaragua 1972        111.20000           60.80
## 2344                          Niger 1972        140.40000           38.69
## 2345                        Nigeria 1972        159.20000           47.16
## 2346                         Norway 1972         12.20000           74.46
## 2347                           Oman 1972        136.10000           55.07
## 2348                       Pakistan 1972        135.70000           55.12
## 2349                         Panama 1972         47.40000           67.72
## 2350               Papua New Guinea 1972         94.40000           47.63
## 2351                       Paraguay 1972         56.80000           69.78
## 2352                           Peru 1972         98.30000           57.04
## 2353                    Philippines 1972         54.70000           62.77
## 2354                         Poland 1972         28.80000           70.95
## 2355                       Portugal 1972         47.60000           69.23
## 2356                    Puerto Rico 1972               NA           71.98
## 2357                          Qatar 1972         44.80000           69.03
## 2358                        Romania 1972         50.10000           69.06
## 2359                         Russia 1972         32.90000           68.92
## 2360                         Rwanda 1972        134.10000           45.81
## 2361                      St. Lucia 1972         47.90000           63.63
## 2362 St. Vincent and the Grenadines 1972         60.30000           65.43
## 2363                          Samoa 1972               NA           58.50
## 2364                   Saudi Arabia 1972        110.30000           58.04
## 2365                        Senegal 1972        117.50000           40.94
## 2366                         Serbia 1972               NA           69.03
## 2367                     Seychelles 1972         48.60000           65.59
## 2368                   Sierra Leone 1972        185.20000           45.39
## 2369                      Singapore 1972         19.60000           68.12
## 2370                Slovak Republic 1972               NA           70.46
## 2371                       Slovenia 1972               NA           69.66
## 2372                Solomon Islands 1972         66.80000           57.52
## 2373                   South Africa 1972               NA           53.44
## 2374                          Spain 1972         22.60000           73.00
## 2375                      Sri Lanka 1972         51.90000           65.56
## 2376                          Sudan 1972         93.40000           55.06
## 2377                       Suriname 1972               NA           65.32
## 2378                      Swaziland 1972        113.40000           50.03
## 2379                         Sweden 1972         10.40000           74.68
## 2380                    Switzerland 1972         13.60000           73.82
## 2381                          Syria 1972         68.20000           60.82
## 2382                     Tajikistan 1972        116.00000           62.23
## 2383                       Tanzania 1972        124.00000           50.55
## 2384                       Thailand 1972         65.80000           60.82
## 2385                    Timor-Leste 1972               NA           45.51
## 2386                           Togo 1972        127.20000           49.00
## 2387                          Tonga 1972         35.30000           65.17
## 2388            Trinidad and Tobago 1972         42.20000           66.11
## 2389                        Tunisia 1972        110.90000           55.37
## 2390                         Turkey 1972        119.30000           55.96
## 2391                   Turkmenistan 1972               NA           59.74
## 2392                         Uganda 1972        113.70000           51.17
## 2393                        Ukraine 1972         27.00000           70.57
## 2394           United Arab Emirates 1972         59.60000           62.45
## 2395                 United Kingdom 1972         17.20000           71.98
## 2396                  United States 1972         18.30000           71.34
## 2397                        Uruguay 1972         47.80000           69.01
## 2398                     Uzbekistan 1972               NA           64.14
## 2399                        Vanuatu 1972         71.90000           52.77
## 2400                      Venezuela 1972         45.50000           66.72
## 2401             West Bank and Gaza 1972               NA           59.48
## 2402                        Vietnam 1972         54.70000           58.00
## 2403                          Yemen 1972        204.30000           43.28
## 2404                         Zambia 1972        103.70000           55.13
## 2405                       Zimbabwe 1972         71.10000           58.05
## 2406                        Albania 1973         68.30000           68.93
## 2407                        Algeria 1973        137.00000           53.91
## 2408                         Angola 1973               NA           43.17
## 2409            Antigua and Barbuda 1973               NA           68.30
## 2410                      Argentina 1973         56.80000           67.96
## 2411                        Armenia 1973               NA           72.19
## 2412                          Aruba 1973               NA           70.19
## 2413                      Australia 1973         16.20000           72.11
## 2414                        Austria 1973         23.00000           71.16
## 2415                     Azerbaijan 1973               NA           66.04
## 2416                        Bahamas 1973         27.20000           65.30
## 2417                        Bahrain 1973         44.20000           65.38
## 2418                     Bangladesh 1973        147.40000           45.77
## 2419                       Barbados 1973         35.40000           67.47
## 2420                        Belarus 1973               NA           72.29
## 2421                        Belgium 1973         17.70000           71.56
## 2422                         Belize 1973         63.20000           67.11
## 2423                          Benin 1973        149.80000           45.77
## 2424                         Bhutan 1973        166.40000           45.18
## 2425                        Bolivia 1973        134.70000           48.89
## 2426         Bosnia and Herzegovina 1973               NA           71.49
## 2427                       Botswana 1973         75.90000           56.18
## 2428                         Brazil 1973         94.90000           60.98
## 2429                         Brunei 1973               NA           68.58
## 2430                       Bulgaria 1973         31.10000           71.40
## 2431                   Burkina Faso 1973        144.60000           41.78
## 2432                        Burundi 1973        146.10000           43.35
## 2433                       Cambodia 1973               NA           37.58
## 2434                       Cameroon 1973        116.00000           50.85
## 2435                         Canada 1973         15.90000           73.04
## 2436                     Cape Verde 1973         89.60000           56.50
## 2437       Central African Republic 1973        129.90000           45.91
## 2438                           Chad 1973        131.20000           47.47
## 2439                          Chile 1973         63.70000           63.63
## 2440                          China 1973         69.70000           60.97
## 2441                       Colombia 1973         63.50000           64.08
## 2442                        Comoros 1973        142.20000           50.12
## 2443               Congo, Dem. Rep. 1973        144.20000           49.46
## 2444                    Congo, Rep. 1973         82.50000           53.69
## 2445                     Costa Rica 1973         47.00000           68.95
## 2446                  Cote d'Ivoire 1973        146.10000           48.02
## 2447                        Croatia 1973               NA           69.40
## 2448                           Cuba 1973         27.80000           71.29
## 2449                         Cyprus 1973               NA           73.47
## 2450                 Czech Republic 1973               NA           70.33
## 2451                        Denmark 1973         11.60000           73.83
## 2452                       Djibouti 1973               NA           53.83
## 2453             Dominican Republic 1973         79.40000           62.67
## 2454                        Ecuador 1973         88.40000           60.67
## 2455                          Egypt 1973        153.20000           53.84
## 2456                    El Salvador 1973        100.80000           58.22
## 2457              Equatorial Guinea 1973               NA           42.21
## 2458                        Eritrea 1973        123.90000           44.35
## 2459                        Estonia 1973               NA           70.83
## 2460                       Ethiopia 1973        142.40000           39.85
## 2461                           Fiji 1973         42.40000           60.60
## 2462                        Finland 1973         11.30000           71.42
## 2463                         France 1973         13.10000           72.69
## 2464               French Polynesia 1973               NA           61.15
## 2465                          Gabon 1973               NA           47.90
## 2466                         Gambia 1973        119.10000           46.47
## 2467                        Georgia 1973               NA           68.17
## 2468                        Germany 1973         19.70000           71.41
## 2469                          Ghana 1973        116.50000           51.02
## 2470                         Greece 1973         30.10000           72.13
## 2471                      Greenland 1973               NA           64.66
## 2472                        Grenada 1973               NA           65.62
## 2473                      Guatemala 1973        109.10000           55.67
## 2474                         Guinea 1973        189.10000           38.97
## 2475                  Guinea-Bissau 1973               NA           46.12
## 2476                         Guyana 1973         54.90000           61.24
## 2477                          Haiti 1973        153.00000           48.17
## 2478                       Honduras 1973         91.70000           56.80
## 2479               Hong Kong, China 1973               NA           72.90
## 2480                        Hungary 1973         38.60000           69.69
## 2481                        Iceland 1973         11.30000           74.52
## 2482                          India 1973        135.80000           50.81
## 2483                      Indonesia 1973        103.60000           54.75
## 2484                           Iran 1973        115.90000           55.24
## 2485                           Iraq 1973         71.90000           58.31
## 2486                        Ireland 1973         18.00000           72.11
## 2487                         Israel 1973               NA           71.54
## 2488                          Italy 1973         24.50000           72.09
## 2489                        Jamaica 1973         40.30000           71.71
## 2490                          Japan 1973         11.30000           73.45
## 2491                         Jordan 1973         57.80000           63.30
## 2492                     Kazakhstan 1973         65.60000           64.16
## 2493                          Kenya 1973         85.20000           55.69
## 2494                       Kiribati 1973         90.80000           51.02
## 2495                    South Korea 1973         29.50000           63.34
## 2496                         Kuwait 1973         45.30000           70.46
## 2497                Kyrgyz Republic 1973         90.00000           61.14
## 2498                            Lao 1973        136.80000           45.39
## 2499                         Latvia 1973               NA           70.29
## 2500                        Lebanon 1973         46.60000           66.18
## 2501                        Lesotho 1973        122.00000           50.70
## 2502                        Liberia 1973        181.00000           42.16
## 2503                          Libya 1973         81.30000           62.16
## 2504                      Lithuania 1973         18.90000           71.70
## 2505                     Luxembourg 1973         16.10000           70.34
## 2506                   Macao, China 1973               NA           70.26
## 2507                 Macedonia, FYR 1973               NA           67.83
## 2508                     Madagascar 1973         96.70000           49.50
## 2509                         Malawi 1973        195.50000           43.00
## 2510                       Malaysia 1973         38.00000           66.34
## 2511                       Maldives 1973        152.00000           49.98
## 2512                           Mali 1973        188.20000           36.82
## 2513                          Malta 1973         21.20000           72.49
## 2514                     Mauritania 1973        106.60000           51.20
## 2515                      Mauritius 1973         57.40000           63.68
## 2516                         Mexico 1973         70.50000           63.29
## 2517          Micronesia, Fed. Sts. 1973               NA           61.71
## 2518                        Moldova 1973         47.30000           65.58
## 2519                       Mongolia 1973               NA           57.82
## 2520                     Montenegro 1973               NA           71.41
## 2521                        Morocco 1973        114.70000           55.62
## 2522                     Mozambique 1973        179.80000           45.85
## 2523                        Namibia 1973         63.10000           54.44
## 2524                          Nepal 1973        167.20000           45.92
## 2525                    Netherlands 1973         11.30000           74.17
## 2526                  New Caledonia 1973               NA           63.95
## 2527                    New Zealand 1973         15.80000           71.78
## 2528                      Nicaragua 1973        107.90000           61.56
## 2529                          Niger 1973        141.40000           38.95
## 2530                        Nigeria 1973        154.10000           47.77
## 2531                         Norway 1973         11.60000           74.56
## 2532                           Oman 1973        128.60000           56.06
## 2533                       Pakistan 1973        133.40000           55.64
## 2534                         Panama 1973         45.40000           68.26
## 2535               Papua New Guinea 1973         91.70000           48.27
## 2536                       Paraguay 1973         56.10000           70.06
## 2537                           Peru 1973         95.80000           57.85
## 2538                    Philippines 1973         54.50000           62.95
## 2539                         Poland 1973         26.90000           70.95
## 2540                       Portugal 1973         43.30000           68.63
## 2541                    Puerto Rico 1973               NA           72.26
## 2542                          Qatar 1973         42.20000           69.52
## 2543                        Romania 1973         47.30000           69.34
## 2544                         Russia 1973         31.80000           68.89
## 2545                         Rwanda 1973        137.30000           45.91
## 2546                      St. Lucia 1973         43.70000           64.22
## 2547 St. Vincent and the Grenadines 1973         60.50000           65.64
## 2548                          Samoa 1973               NA           59.09
## 2549                   Saudi Arabia 1973        104.10000           59.26
## 2550                        Senegal 1973        114.70000           41.85
## 2551                         Serbia 1973               NA           69.32
## 2552                     Seychelles 1973         45.80000           66.06
## 2553                   Sierra Leone 1973        182.60000           46.48
## 2554                      Singapore 1973         17.80000           68.50
## 2555                Slovak Republic 1973               NA           70.16
## 2556                       Slovenia 1973               NA           69.86
## 2557                Solomon Islands 1973         62.60000           58.13
## 2558                   South Africa 1973               NA           53.77
## 2559                          Spain 1973         21.30000           72.78
## 2560                      Sri Lanka 1973         51.00000           65.97
## 2561                          Sudan 1973         92.70000           55.41
## 2562                       Suriname 1973               NA           65.62
## 2563                      Swaziland 1973        109.70000           50.67
## 2564                         Sweden 1973          9.80000           74.83
## 2565                    Switzerland 1973         12.80000           74.12
## 2566                          Syria 1973         65.00000           61.56
## 2567                     Tajikistan 1973        112.80000           62.53
## 2568                       Tanzania 1973        122.10000           51.09
## 2569                       Thailand 1973         62.90000           61.29
## 2570                    Timor-Leste 1973               NA           44.71
## 2571                           Togo 1973        124.40000           49.63
## 2572                          Tonga 1973         33.50000           65.44
## 2573            Trinidad and Tobago 1973         41.30000           66.33
## 2574                        Tunisia 1973        105.40000           56.57
## 2575                         Turkey 1973        115.90000           56.65
## 2576                   Turkmenistan 1973               NA           60.01
## 2577                         Uganda 1973        114.70000           51.33
## 2578                        Ukraine 1973         26.20000           70.75
## 2579           United Arab Emirates 1973         54.70000           63.09
## 2580                 United Kingdom 1973         16.60000           72.18
## 2581                  United States 1973         17.50000           71.54
## 2582                        Uruguay 1973         48.50000           69.10
## 2583                     Uzbekistan 1973               NA           64.40
## 2584                        Vanuatu 1973         69.30000           53.33
## 2585                      Venezuela 1973         44.20000           67.14
## 2586             West Bank and Gaza 1973               NA           60.26
## 2587                        Vietnam 1973         53.80000           58.35
## 2588                          Yemen 1973        196.70000           44.17
## 2589                         Zambia 1973        100.70000           55.71
## 2590                       Zimbabwe 1973         70.70000           58.47
## 2591                        Albania 1974         65.80000           69.35
## 2592                        Algeria 1974        133.00000           54.52
## 2593                         Angola 1974               NA           43.71
## 2594            Antigua and Barbuda 1974               NA           68.64
## 2595                      Argentina 1974         55.20000           68.28
## 2596                        Armenia 1974               NA           72.28
## 2597                          Aruba 1974               NA           70.52
## 2598                      Australia 1974         15.30000           71.86
## 2599                        Austria 1974         21.60000           71.15
## 2600                     Azerbaijan 1974               NA           66.05
## 2601                        Bahamas 1974         27.20000           65.53
## 2602                        Bahrain 1974         40.70000           66.03
## 2603                     Bangladesh 1974        146.40000           46.49
## 2604                       Barbados 1974         33.60000           67.83
## 2605                        Belarus 1974               NA           72.57
## 2606                        Belgium 1974         16.70000           71.91
## 2607                         Belize 1974         61.20000           67.52
## 2608                          Benin 1974        146.80000           46.36
## 2609                         Bhutan 1974        161.60000           46.20
## 2610                        Bolivia 1974        131.30000           49.50
## 2611         Bosnia and Herzegovina 1974               NA           72.12
## 2612                       Botswana 1974         72.70000           56.82
## 2613                         Brazil 1974         92.30000           61.41
## 2614                         Brunei 1974               NA           68.95
## 2615                       Bulgaria 1974         30.50000           71.26
## 2616                   Burkina Faso 1974        141.00000           42.36
## 2617                        Burundi 1974        146.00000           43.66
## 2618                       Cambodia 1974               NA           34.94
## 2619                       Cameroon 1974        114.70000           51.49
## 2620                         Canada 1974         15.00000           73.12
## 2621                     Cape Verde 1974         83.40000           57.41
## 2622       Central African Republic 1974        127.90000           46.77
## 2623                           Chad 1974        130.60000           47.98
## 2624                          Chile 1974         60.40000           64.31
## 2625                          China 1974         66.20000           60.63
## 2626                       Colombia 1974         61.00000           64.53
## 2627                        Comoros 1974        139.30000           50.59
## 2628               Congo, Dem. Rep. 1974        142.50000           49.83
## 2629                    Congo, Rep. 1974         80.90000           53.94
## 2630                     Costa Rica 1974         42.30000           69.53
## 2631                  Cote d'Ivoire 1974        140.70000           48.85
## 2632                        Croatia 1974               NA           69.63
## 2633                           Cuba 1974         26.00000           71.74
## 2634                         Cyprus 1974               NA           73.70
## 2635                 Czech Republic 1974               NA           70.42
## 2636                        Denmark 1974         10.90000           73.96
## 2637                       Djibouti 1974               NA           54.38
## 2638             Dominican Republic 1974         77.20000           63.23
## 2639                        Ecuador 1974         85.50000           61.18
## 2640                          Egypt 1974        148.80000           54.46
## 2641                    El Salvador 1974         98.40000           58.33
## 2642              Equatorial Guinea 1974               NA           42.56
## 2643                        Eritrea 1974        126.30000           44.75
## 2644                        Estonia 1974               NA           70.94
## 2645                       Ethiopia 1974        142.40000           37.71
## 2646                           Fiji 1974         42.00000           60.91
## 2647                        Finland 1974         10.80000           71.34
## 2648                         France 1974         12.70000           73.04
## 2649               French Polynesia 1974               NA           61.47
## 2650                          Gabon 1974               NA           48.68
## 2651                         Gambia 1974        116.70000           47.51
## 2652                        Georgia 1974               NA           68.47
## 2653                        Germany 1974         18.80000           71.71
## 2654                          Ghana 1974        114.20000           51.35
## 2655                         Greece 1974         29.40000           72.39
## 2656                      Greenland 1974               NA           64.49
## 2657                        Grenada 1974               NA           65.92
## 2658                      Guatemala 1974        106.00000           56.28
## 2659                         Guinea 1974        186.80000           39.43
## 2660                  Guinea-Bissau 1974               NA           46.33
## 2661                         Guyana 1974         54.80000           61.40
## 2662                          Haiti 1974        149.50000           48.53
## 2663                       Honduras 1974         88.30000           57.56
## 2664               Hong Kong, China 1974               NA           73.20
## 2665                        Hungary 1974         38.10000           69.41
## 2666                        Iceland 1974         10.80000           74.59
## 2667                          India 1974        133.10000           51.53
## 2668                      Indonesia 1974        100.60000           55.41
## 2669                           Iran 1974        110.90000           56.24
## 2670                           Iraq 1974         68.90000           58.81
## 2671                        Ireland 1974         17.50000           72.08
## 2672                         Israel 1974         25.00000           71.78
## 2673                          Italy 1974         22.50000           72.81
## 2674                        Jamaica 1974         39.00000           72.00
## 2675                          Japan 1974         10.60000           73.88
## 2676                         Jordan 1974         55.50000           63.98
## 2677                     Kazakhstan 1974         64.50000           64.40
## 2678                          Kenya 1974         83.00000           56.29
## 2679                       Kiribati 1974         89.50000           51.41
## 2680                    South Korea 1974         26.00000           63.84
## 2681                         Kuwait 1974         42.80000           70.93
## 2682                Kyrgyz Republic 1974         89.30000           61.38
## 2683                            Lao 1974        135.40000           45.62
## 2684                         Latvia 1974               NA           70.22
## 2685                        Lebanon 1974         46.10000           66.37
## 2686                        Lesotho 1974        118.40000           51.14
## 2687                        Liberia 1974        177.50000           42.91
## 2688                          Libya 1974         76.90000           63.13
## 2689                      Lithuania 1974         19.80000           71.63
## 2690                     Luxembourg 1974         15.10000           70.42
## 2691                   Macao, China 1974               NA           70.61
## 2692                 Macedonia, FYR 1974               NA           68.14
## 2693                     Madagascar 1974         98.20000           50.06
## 2694                         Malawi 1974        189.90000           43.41
## 2695                       Malaysia 1974         36.10000           66.73
## 2696                       Maldives 1974        144.40000           50.82
## 2697                           Mali 1974        184.80000           37.61
## 2698                          Malta 1974         20.10000           72.78
## 2699                     Mauritania 1974        106.10000           51.69
## 2700                      Mauritius 1974         54.50000           63.99
## 2701                         Mexico 1974         68.50000           63.83
## 2702          Micronesia, Fed. Sts. 1974               NA           62.12
## 2703                        Moldova 1974         46.10000           65.60
## 2704                       Mongolia 1974               NA           58.06
## 2705                     Montenegro 1974               NA           71.78
## 2706                        Morocco 1974        112.40000           56.08
## 2707                     Mozambique 1974        179.00000           46.46
## 2708                        Namibia 1974         63.30000           54.98
## 2709                          Nepal 1974        163.60000           46.47
## 2710                    Netherlands 1974         10.90000           74.56
## 2711                  New Caledonia 1974               NA           64.44
## 2712                    New Zealand 1974         15.40000           72.03
## 2713                      Nicaragua 1974        104.20000           62.28
## 2714                          Niger 1974        141.80000           39.25
## 2715                        Nigeria 1974        149.20000           48.38
## 2716                         Norway 1974         11.00000           74.88
## 2717                           Oman 1974        121.20000           57.11
## 2718                       Pakistan 1974        131.20000           56.16
## 2719                         Panama 1974         43.50000           68.81
## 2720               Papua New Guinea 1974         89.20000           48.90
## 2721                       Paraguay 1974         55.30000           70.32
## 2722                           Peru 1974         93.30000           58.60
## 2723                    Philippines 1974         54.40000           63.10
## 2724                         Poland 1974         25.40000           71.46
## 2725                       Portugal 1974         39.40000           69.18
## 2726                    Puerto Rico 1974               NA           72.53
## 2727                          Qatar 1974         39.90000           69.98
## 2728                        Romania 1974         44.80000           69.58
## 2729                         Russia 1974         30.80000           68.88
## 2730                         Rwanda 1974        141.10000           46.01
## 2731                      St. Lucia 1974         39.80000           64.80
## 2732 St. Vincent and the Grenadines 1974         60.10000           65.82
## 2733                          Samoa 1974               NA           59.67
## 2734                   Saudi Arabia 1974         98.50000           60.48
## 2735                        Senegal 1974        111.50000           42.85
## 2736                         Serbia 1974               NA           69.59
## 2737                     Seychelles 1974         42.80000           66.49
## 2738                   Sierra Leone 1974        180.00000           47.50
## 2739                      Singapore 1974         16.00000           68.88
## 2740                Slovak Republic 1974               NA           70.33
## 2741                       Slovenia 1974               NA           70.09
## 2742                Solomon Islands 1974         58.70000           58.74
## 2743                   South Africa 1974         91.10000           54.11
## 2744                          Spain 1974         20.00000           73.16
## 2745                      Sri Lanka 1974         50.00000           66.36
## 2746                          Sudan 1974         92.00000           55.73
## 2747                       Suriname 1974               NA           65.91
## 2748                      Swaziland 1974        105.80000           51.30
## 2749                         Sweden 1974          9.20000           74.94
## 2750                    Switzerland 1974         12.00000           74.47
## 2751                          Syria 1974         62.00000           62.26
## 2752                     Tajikistan 1974        109.40000           62.81
## 2753                       Tanzania 1974        120.20000           51.65
## 2754                       Thailand 1974         60.20000           61.77
## 2755                    Timor-Leste 1974               NA           43.49
## 2756                           Togo 1974        121.80000           50.26
## 2757                          Tonga 1974         31.90000           65.69
## 2758            Trinidad and Tobago 1974         40.40000           66.57
## 2759                        Tunisia 1974         99.90000           57.75
## 2760                         Turkey 1974        112.40000           57.36
## 2761                   Turkmenistan 1974               NA           60.25
## 2762                         Uganda 1974        116.30000           51.45
## 2763                        Ukraine 1974         25.50000           70.63
## 2764           United Arab Emirates 1974         50.20000           63.70
## 2765                 United Kingdom 1974         16.00000           72.38
## 2766                  United States 1974         16.70000           72.08
## 2767                        Uruguay 1974         49.30000           69.23
## 2768                     Uzbekistan 1974               NA           64.64
## 2769                        Vanuatu 1974         66.90000           53.89
## 2770                      Venezuela 1974         42.90000           67.53
## 2771             West Bank and Gaza 1974               NA           61.03
## 2772                        Vietnam 1974         52.80000           59.23
## 2773                          Yemen 1974        189.00000           45.10
## 2774                         Zambia 1974         98.10000           56.24
## 2775                       Zimbabwe 1974         70.50000           58.92
## 2776                        Albania 1975         63.10000           69.77
## 2777                        Algeria 1975        128.70000           55.24
## 2778                         Angola 1975               NA           44.22
## 2779            Antigua and Barbuda 1975               NA           68.99
## 2780                      Argentina 1975         53.20000           68.60
## 2781                        Armenia 1975               NA           72.33
## 2782                          Aruba 1975               NA           70.83
## 2783                      Australia 1975         14.40000           72.81
## 2784                        Austria 1975         19.80000           71.28
## 2785                     Azerbaijan 1975               NA           66.02
## 2786                        Bahamas 1975         27.20000           65.74
## 2787                        Bahrain 1975         37.70000           66.63
## 2788                     Bangladesh 1975        145.20000           47.58
## 2789                       Barbados 1975         31.80000           68.17
## 2790                        Belarus 1975               NA           71.63
## 2791                        Belgium 1975         15.80000           71.90
## 2792                         Belize 1975         59.20000           67.93
## 2793                          Benin 1975        143.50000           46.93
## 2794                         Bhutan 1975        157.10000           47.21
## 2795                        Bolivia 1975        127.90000           50.19
## 2796         Bosnia and Herzegovina 1975               NA           72.71
## 2797                       Botswana 1975         69.50000           57.45
## 2798                         Brazil 1975         89.80000           61.84
## 2799                         Brunei 1975               NA           69.32
## 2800                       Bulgaria 1975         29.80000           71.11
## 2801                   Burkina Faso 1975        136.60000           43.00
## 2802                        Burundi 1975        145.70000           44.02
## 2803                       Cambodia 1975        178.20000           21.69
## 2804                       Cameroon 1975        114.30000           52.13
## 2805                         Canada 1975         14.20000           73.41
## 2806                     Cape Verde 1975         78.00000           58.30
## 2807       Central African Republic 1975        126.00000           47.60
## 2808                           Chad 1975        130.00000           48.45
## 2809                          Chile 1975         55.30000           65.02
## 2810                          China 1975         62.60000           60.78
## 2811                       Colombia 1975         58.40000           65.04
## 2812                        Comoros 1975        136.20000           51.03
## 2813               Congo, Dem. Rep. 1975        140.70000           50.17
## 2814                    Congo, Rep. 1975         79.20000           54.20
## 2815                     Costa Rica 1975         38.00000           70.12
## 2816                  Cote d'Ivoire 1975        135.10000           49.63
## 2817                        Croatia 1975               NA           69.83
## 2818                           Cuba 1975         24.70000           72.18
## 2819                         Cyprus 1975               NA           73.93
## 2820                 Czech Republic 1975               NA           70.77
## 2821                        Denmark 1975         10.30000           74.24
## 2822                       Djibouti 1975               NA           54.85
## 2823             Dominican Republic 1975         74.90000           63.75
## 2824                        Ecuador 1975         82.50000           61.73
## 2825                          Egypt 1975        143.70000           55.17
## 2826                    El Salvador 1975         95.60000           58.36
## 2827              Equatorial Guinea 1975               NA           42.91
## 2828                        Eritrea 1975        123.90000           45.14
## 2829                        Estonia 1975               NA           70.26
## 2830                       Ethiopia 1975        142.70000           38.78
## 2831                           Fiji 1975         41.40000           61.21
## 2832                        Finland 1975         10.00000           71.89
## 2833                         France 1975         12.40000           73.13
## 2834               French Polynesia 1975               NA           61.82
## 2835                          Gabon 1975               NA           49.45
## 2836                         Gambia 1975        114.40000           48.56
## 2837                        Georgia 1975         56.60000           68.76
## 2838                        Germany 1975         17.70000           71.56
## 2839                          Ghana 1975        111.50000           51.68
## 2840                         Greece 1975         28.50000           72.62
## 2841                      Greenland 1975               NA           64.31
## 2842                        Grenada 1975               NA           66.22
## 2843                      Guatemala 1975        102.90000           56.82
## 2844                         Guinea 1975        184.50000           39.94
## 2845                  Guinea-Bissau 1975               NA           46.54
## 2846                         Guyana 1975         54.60000           61.56
## 2847                          Haiti 1975        146.00000           48.90
## 2848                       Honduras 1975         85.00000           58.34
## 2849               Hong Kong, China 1975               NA           73.49
## 2850                        Hungary 1975         35.80000           69.46
## 2851                        Iceland 1975         10.30000           75.57
## 2852                          India 1975        130.30000           52.25
## 2853                      Indonesia 1975         97.80000           56.04
## 2854                           Iran 1975        105.80000           57.10
## 2855                           Iraq 1975         66.20000           59.19
## 2856                        Ireland 1975         17.00000           72.68
## 2857                         Israel 1975         22.40000           72.04
## 2858                          Italy 1975         20.50000           72.72
## 2859                        Jamaica 1975         37.80000           72.29
## 2860                          Japan 1975         10.00000           74.38
## 2861                         Jordan 1975         53.30000           64.64
## 2862                     Kazakhstan 1975         63.40000           64.64
## 2863                          Kenya 1975         80.70000           56.89
## 2864                       Kiribati 1975         88.50000           51.81
## 2865                    South Korea 1975         22.80000           64.26
## 2866                         Kuwait 1975         40.50000           71.39
## 2867                Kyrgyz Republic 1975         87.90000           61.60
## 2868                            Lao 1975        134.00000           45.85
## 2869                         Latvia 1975               NA           69.37
## 2870                        Lebanon 1975         45.40000           66.54
## 2871                        Lesotho 1975        114.60000           51.63
## 2872                        Liberia 1975        174.20000           43.68
## 2873                          Libya 1975         72.80000           64.06
## 2874                      Lithuania 1975         20.20000           71.24
## 2875                     Luxembourg 1975         14.20000           70.37
## 2876                   Macao, China 1975               NA           70.95
## 2877                 Macedonia, FYR 1975               NA           68.41
## 2878                     Madagascar 1975         99.50000           50.59
## 2879                         Malawi 1975        184.00000           43.79
## 2880                       Malaysia 1975         34.20000           67.13
## 2881                       Maldives 1975        137.20000           51.69
## 2882                           Mali 1975        180.90000           38.39
## 2883                          Malta 1975         19.00000           73.07
## 2884                     Mauritania 1975        105.10000           52.19
## 2885                      Mauritius 1975         49.60000           64.37
## 2886                         Mexico 1975         66.60000           64.39
## 2887          Micronesia, Fed. Sts. 1975               NA           62.50
## 2888                        Moldova 1975         44.90000           65.60
## 2889                       Mongolia 1975               NA           58.22
## 2890                     Montenegro 1975               NA           72.07
## 2891                        Morocco 1975        109.90000           56.56
## 2892                     Mozambique 1975        178.00000           47.06
## 2893                        Namibia 1975         63.40000           55.51
## 2894                          Nepal 1975        159.90000           47.05
## 2895                    Netherlands 1975         10.50000           74.49
## 2896                  New Caledonia 1975               NA           64.91
## 2897                    New Zealand 1975         14.90000           72.30
## 2898                      Nicaragua 1975        100.30000           62.95
## 2899                          Niger 1975        141.40000           39.57
## 2900                        Nigeria 1975        144.40000           49.00
## 2901                         Norway 1975         10.50000           74.93
## 2902                           Oman 1975        114.20000           58.20
## 2903                       Pakistan 1975        129.40000           56.68
## 2904                         Panama 1975         41.80000           69.35
## 2905               Papua New Guinea 1975         86.90000           49.54
## 2906                       Paraguay 1975         54.50000           70.57
## 2907                           Peru 1975         91.00000           59.31
## 2908                    Philippines 1975         54.40000           63.21
## 2909                         Poland 1975         24.50000           70.88
## 2910                       Portugal 1975         36.00000           68.90
## 2911                    Puerto Rico 1975               NA           72.77
## 2912                          Qatar 1975         37.70000           70.40
## 2913                        Romania 1975         42.80000           69.75
## 2914                         Russia 1975         29.90000           68.24
## 2915                         Rwanda 1975        144.80000           46.13
## 2916                      St. Lucia 1975         36.30000           65.38
## 2917 St. Vincent and the Grenadines 1975         59.00000           65.99
## 2918                          Samoa 1975               NA           60.26
## 2919                   Saudi Arabia 1975         93.10000           61.67
## 2920                        Senegal 1975        108.00000           43.94
## 2921                         Serbia 1975               NA           69.82
## 2922                     Seychelles 1975         39.70000           66.90
## 2923                   Sierra Leone 1975        177.50000           48.45
## 2924                      Singapore 1975         14.30000           69.26
## 2925                Slovak Republic 1975               NA           70.45
## 2926                       Slovenia 1975               NA           70.32
## 2927                Solomon Islands 1975         55.10000           59.33
## 2928                   South Africa 1975         86.60000           54.47
## 2929                          Spain 1975         20.40000           73.49
## 2930                      Sri Lanka 1975         48.70000           66.76
## 2931                          Sudan 1975         91.30000           56.00
## 2932                       Suriname 1975               NA           66.19
## 2933                      Swaziland 1975        101.60000           51.94
## 2934                         Sweden 1975          8.70000           74.95
## 2935                    Switzerland 1975         11.20000           74.86
## 2936                          Syria 1975         59.10000           62.95
## 2937                     Tajikistan 1975        106.70000           63.08
## 2938                       Tanzania 1975        118.20000           52.19
## 2939                       Thailand 1975         57.60000           62.24
## 2940                    Timor-Leste 1975               NA           42.12
## 2941                           Togo 1975        119.20000           50.88
## 2942                          Tonga 1975         30.40000           65.93
## 2943            Trinidad and Tobago 1975         39.50000           66.83
## 2944                        Tunisia 1975         94.20000           58.90
## 2945                         Turkey 1975        108.80000           58.08
## 2946                   Turkmenistan 1975               NA           60.49
## 2947                         Uganda 1975        118.40000           51.55
## 2948                        Ukraine 1975         25.00000           69.96
## 2949           United Arab Emirates 1975         45.90000           64.30
## 2950                 United Kingdom 1975         15.40000           72.65
## 2951                  United States 1975         16.00000           72.68
## 2952                        Uruguay 1975         49.40000           69.39
## 2953                     Uzbekistan 1975               NA           64.87
## 2954                        Vanuatu 1975         64.60000           54.46
## 2955                      Venezuela 1975         41.70000           67.90
## 2956             West Bank and Gaza 1975         78.00000           61.81
## 2957                        Vietnam 1975         51.80000           60.54
## 2958                          Yemen 1975        181.20000           46.05
## 2959                         Zambia 1975         96.30000           56.70
## 2960                       Zimbabwe 1975         70.30000           59.41
## 2961                        Albania 1976         60.80000           70.17
## 2962                        Algeria 1976        124.00000           56.11
## 2963                         Angola 1976               NA           44.68
## 2964            Antigua and Barbuda 1976               NA           69.32
## 2965                      Argentina 1976         50.50000           68.92
## 2966                        Armenia 1976         70.80000           72.38
## 2967                          Aruba 1976               NA           71.14
## 2968                      Australia 1976         13.50000           72.84
## 2969                        Austria 1976         18.10000           71.77
## 2970                     Azerbaijan 1976               NA           65.92
## 2971                        Bahamas 1976         26.90000           65.96
## 2972                        Bahrain 1976         35.00000           67.20
## 2973                     Bangladesh 1976        143.50000           48.92
## 2974                       Barbados 1976         30.00000           68.53
## 2975                        Belarus 1976               NA           71.46
## 2976                        Belgium 1976         14.90000           72.05
## 2977                         Belize 1976         57.30000           68.32
## 2978                          Benin 1976        140.10000           47.46
## 2979                         Bhutan 1976        152.40000           48.22
## 2980                        Bolivia 1976        124.50000           50.93
## 2981         Bosnia and Herzegovina 1976               NA           73.24
## 2982                       Botswana 1976         66.30000           58.07
## 2983                         Brazil 1976         87.30000           62.27
## 2984                         Brunei 1976               NA           69.67
## 2985                       Bulgaria 1976         29.00000           71.44
## 2986                   Burkina Faso 1976        131.90000           43.74
## 2987                        Burundi 1976        144.80000           44.43
## 2988                       Cambodia 1976        166.40000           19.04
## 2989                       Cameroon 1976        114.20000           52.74
## 2990                         Canada 1976         13.30000           73.84
## 2991                     Cape Verde 1976         73.30000           59.16
## 2992       Central African Republic 1976        124.20000           48.36
## 2993                           Chad 1976        129.40000           48.89
## 2994                          Chile 1976         48.80000           65.75
## 2995                          China 1976         59.10000           60.46
## 2996                       Colombia 1976         55.60000           65.58
## 2997                        Comoros 1976        133.00000           51.46
## 2998               Congo, Dem. Rep. 1976        138.90000           50.49
## 2999                    Congo, Rep. 1976         77.60000           54.45
## 3000                     Costa Rica 1976         33.20000           70.75
## 3001                  Cote d'Ivoire 1976        129.70000           50.37
## 3002                        Croatia 1976               NA           70.00
## 3003                           Cuba 1976         23.10000           72.59
## 3004                         Cyprus 1976               NA           74.15
## 3005                 Czech Republic 1976               NA           70.88
## 3006                        Denmark 1976          9.70000           73.91
## 3007                       Djibouti 1976        131.00000           55.29
## 3008             Dominican Republic 1976         72.60000           64.25
## 3009                        Ecuador 1976         79.50000           62.30
## 3010                          Egypt 1976        138.00000           55.93
## 3011                    El Salvador 1976         92.70000           58.33
## 3012              Equatorial Guinea 1976               NA           43.28
## 3013                        Eritrea 1976        121.60000           45.49
## 3014                        Estonia 1976               NA           69.88
## 3015                       Ethiopia 1976        143.10000           42.86
## 3016                           Fiji 1976         40.60000           61.50
## 3017                        Finland 1976          9.40000           72.04
## 3018                         France 1976         12.00000           73.38
## 3019               French Polynesia 1976               NA           62.23
## 3020                          Gabon 1976               NA           50.23
## 3021                         Gambia 1976        112.10000           49.58
## 3022                        Georgia 1976         55.00000           69.00
## 3023                        Germany 1976         16.50000           72.02
## 3024                          Ghana 1976        108.70000           52.00
## 3025                         Greece 1976         27.30000           72.85
## 3026                      Greenland 1976               NA           64.14
## 3027                        Grenada 1976               NA           66.52
## 3028                      Guatemala 1976         99.90000           57.32
## 3029                         Guinea 1976        181.90000           40.47
## 3030                  Guinea-Bissau 1976        136.30000           46.77
## 3031                         Guyana 1976         54.40000           61.72
## 3032                          Haiti 1976        142.60000           49.28
## 3033                       Honduras 1976         81.70000           59.15
## 3034               Hong Kong, China 1976               NA           73.78
## 3035                        Hungary 1976         32.50000           69.75
## 3036                        Iceland 1976          9.80000           76.94
## 3037                          India 1976        127.20000           52.93
## 3038                      Indonesia 1976         95.10000           56.67
## 3039                           Iran 1976        100.50000           57.64
## 3040                           Iraq 1976         63.60000           59.35
## 3041                        Ireland 1976         16.20000           72.81
## 3042                         Israel 1976         20.30000           72.33
## 3043                          Italy 1976         18.70000           73.07
## 3044                        Jamaica 1976         36.70000           72.58
## 3045                          Japan 1976          9.40000           74.78
## 3046                         Jordan 1976         51.20000           65.28
## 3047                     Kazakhstan 1976         62.40000           64.88
## 3048                          Kenya 1976         78.40000           57.49
## 3049                       Kiribati 1976         87.70000           52.20
## 3050                    South Korea 1976         19.90000           64.62
## 3051                         Kuwait 1976         38.20000           71.85
## 3052                Kyrgyz Republic 1976         86.10000           61.83
## 3053                            Lao 1976        132.60000           46.05
## 3054                         Latvia 1976               NA           69.48
## 3055                        Lebanon 1976         44.60000           66.69
## 3056                        Lesotho 1976        110.40000           52.17
## 3057                        Liberia 1976        171.30000           44.45
## 3058                          Libya 1976         69.00000           64.95
## 3059                      Lithuania 1976         20.10000           71.38
## 3060                     Luxembourg 1976         13.40000           70.31
## 3061                   Macao, China 1976               NA           71.29
## 3062                 Macedonia, FYR 1976               NA           68.61
## 3063                     Madagascar 1976        100.80000           51.12
## 3064                         Malawi 1976        177.50000           44.16
## 3065                       Malaysia 1976         32.40000           67.50
## 3066                       Maldives 1976        130.30000           52.59
## 3067                           Mali 1976        176.90000           39.18
## 3068                          Malta 1976         17.90000           73.36
## 3069                     Mauritania 1976        103.60000           52.73
## 3070                      Mauritius 1976         44.10000           64.83
## 3071                         Mexico 1976         64.70000           64.95
## 3072          Micronesia, Fed. Sts. 1976               NA           62.85
## 3073                        Moldova 1976         43.80000           65.57
## 3074                       Mongolia 1976               NA           58.31
## 3075                     Montenegro 1976               NA           72.33
## 3076                        Morocco 1976        107.10000           57.11
## 3077                     Mozambique 1976        177.20000           47.61
## 3078                        Namibia 1976         63.60000           56.04
## 3079                          Nepal 1976        156.20000           47.64
## 3080                    Netherlands 1976         10.10000           74.61
## 3081                  New Caledonia 1976               NA           65.37
## 3082                    New Zealand 1976         14.40000           72.50
## 3083                      Nicaragua 1976         95.90000           63.59
## 3084                          Niger 1976        140.50000           39.97
## 3085                        Nigeria 1976        139.90000           49.62
## 3086                         Norway 1976          9.90000           75.17
## 3087                           Oman 1976        107.10000           59.32
## 3088                       Pakistan 1976        127.70000           57.17
## 3089                         Panama 1976         40.30000           69.88
## 3090               Papua New Guinea 1976         84.60000           50.21
## 3091                       Paraguay 1976         53.60000           70.81
## 3092                           Peru 1976         88.90000           59.99
## 3093                    Philippines 1976         54.30000           63.32
## 3094                         Poland 1976         23.90000           70.88
## 3095                       Portugal 1976         32.70000           69.12
## 3096                    Puerto Rico 1976               NA           72.98
## 3097                          Qatar 1976         35.80000           70.79
## 3098                        Romania 1976         41.00000           69.87
## 3099                         Russia 1976         29.20000           67.98
## 3100                         Rwanda 1976        147.50000           46.31
## 3101                      St. Lucia 1976         33.40000           65.96
## 3102 St. Vincent and the Grenadines 1976         57.30000           66.16
## 3103                          Samoa 1976               NA           60.84
## 3104                   Saudi Arabia 1976         88.20000           62.83
## 3105                        Senegal 1976        104.30000           45.07
## 3106                         Serbia 1976               NA           70.03
## 3107                     Seychelles 1976         36.60000           67.26
## 3108                   Sierra Leone 1976        175.30000           49.31
## 3109                      Singapore 1976         13.00000           69.62
## 3110                Slovak Republic 1976               NA           70.62
## 3111                       Slovenia 1976               NA           70.51
## 3112                Solomon Islands 1976         51.90000           59.90
## 3113                   South Africa 1976         82.60000           54.86
## 3114                          Spain 1976         20.40000           73.81
## 3115                      Sri Lanka 1976         47.30000           67.17
## 3116                          Sudan 1976         90.60000           56.23
## 3117                       Suriname 1976               NA           66.47
## 3118                      Swaziland 1976         97.70000           52.58
## 3119                         Sweden 1976          8.30000           74.96
## 3120                    Switzerland 1976         10.40000           74.98
## 3121                          Syria 1976         56.40000           63.60
## 3122                     Tajikistan 1976        104.30000           63.34
## 3123                       Tanzania 1976        116.10000           52.71
## 3124                       Thailand 1976         55.20000           62.70
## 3125                    Timor-Leste 1976               NA           40.94
## 3126                           Togo 1976        116.60000           51.49
## 3127                          Tonga 1976         29.00000           66.16
## 3128            Trinidad and Tobago 1976         38.50000           67.08
## 3129                        Tunisia 1976         88.60000           60.03
## 3130                         Turkey 1976        105.20000           58.81
## 3131                   Turkmenistan 1976               NA           60.73
## 3132                         Uganda 1976        120.90000           51.65
## 3133                        Ukraine 1976         24.60000           70.01
## 3134           United Arab Emirates 1976         41.90000           64.87
## 3135                 United Kingdom 1976         14.70000           72.62
## 3136                  United States 1976         15.20000           72.99
## 3137                        Uruguay 1976         48.60000           69.58
## 3138                     Uzbekistan 1976               NA           65.11
## 3139                        Vanuatu 1976         62.30000           55.05
## 3140                      Venezuela 1976         40.50000           68.23
## 3141             West Bank and Gaza 1976         73.70000           62.60
## 3142                        Vietnam 1976         50.90000           62.07
## 3143                          Yemen 1976        173.10000           47.05
## 3144                         Zambia 1976         95.30000           57.07
## 3145                       Zimbabwe 1976         70.10000           59.94
## 3146                        Albania 1977         58.60000           70.54
## 3147                        Algeria 1977        119.00000           57.13
## 3148                         Angola 1977               NA           45.12
## 3149            Antigua and Barbuda 1977               NA           69.64
## 3150                      Argentina 1977         47.20000           69.24
## 3151                        Armenia 1977         68.30000           72.44
## 3152                          Aruba 1977               NA           71.44
## 3153                      Australia 1977         12.70000           73.45
## 3154                        Austria 1977         16.60000           72.12
## 3155                     Azerbaijan 1977               NA           65.80
## 3156                        Bahamas 1977         26.60000           66.16
## 3157                        Bahrain 1977         32.60000           67.72
## 3158                     Bangladesh 1977        141.40000           50.27
## 3159                       Barbados 1977         28.30000           68.87
## 3160                        Belarus 1977               NA           71.39
## 3161                        Belgium 1977         14.10000           72.70
## 3162                         Belize 1977         55.60000           68.70
## 3163                          Benin 1977        136.70000           47.96
## 3164                         Bhutan 1977        147.80000           49.22
## 3165                        Bolivia 1977        121.30000           51.73
## 3166         Bosnia and Herzegovina 1977               NA           73.71
## 3167                       Botswana 1977         63.20000           58.65
## 3168                         Brazil 1977         84.70000           62.68
## 3169                         Brunei 1977               NA           70.01
## 3170                       Bulgaria 1977         28.10000           70.88
## 3171                   Burkina Faso 1977        127.40000           44.61
## 3172                        Burundi 1977        143.00000           44.84
## 3173                       Cambodia 1977        155.40000           18.10
## 3174                       Cameroon 1977        113.90000           53.36
## 3175                         Canada 1977         12.50000           74.13
## 3176                     Cape Verde 1977         69.50000           60.00
## 3177       Central African Republic 1977        122.60000           49.07
## 3178                           Chad 1977        128.80000           49.31
## 3179                          Chile 1977         41.70000           66.50
## 3180                          China 1977         55.80000           61.94
## 3181                       Colombia 1977         52.80000           66.17
## 3182                        Comoros 1977        129.60000           51.89
## 3183               Congo, Dem. Rep. 1977        137.10000           50.80
## 3184                    Congo, Rep. 1977         76.00000           54.71
## 3185                     Costa Rica 1977         28.10000           71.38
## 3186                  Cote d'Ivoire 1977        124.70000           51.06
## 3187                        Croatia 1977               NA           70.16
## 3188                           Cuba 1977         20.80000           72.96
## 3189                         Cyprus 1977               NA           74.37
## 3190                 Czech Republic 1977               NA           70.94
## 3191                        Denmark 1977          9.20000           74.82
## 3192                       Djibouti 1977        127.60000           55.71
## 3193             Dominican Republic 1977         70.30000           64.73
## 3194                        Ecuador 1977         76.50000           62.90
## 3195                          Egypt 1977        132.10000           56.69
## 3196                    El Salvador 1977         89.60000           58.22
## 3197              Equatorial Guinea 1977               NA           43.65
## 3198                        Eritrea 1977        119.50000           45.80
## 3199                        Estonia 1977               NA           70.01
## 3200                       Ethiopia 1977        143.40000           42.41
## 3201                           Fiji 1977         39.50000           61.80
## 3202                        Finland 1977          8.70000           72.56
## 3203                         France 1977         11.50000           73.99
## 3204               French Polynesia 1977               NA           62.72
## 3205                          Gabon 1977               NA           51.01
## 3206                         Gambia 1977        109.80000           50.60
## 3207                        Georgia 1977         53.50000           69.19
## 3208                        Germany 1977         15.50000           72.63
## 3209                          Ghana 1977        106.00000           52.33
## 3210                         Greece 1977         25.90000           73.10
## 3211                      Greenland 1977               NA           63.96
## 3212                        Grenada 1977               NA           66.79
## 3213                      Guatemala 1977         96.80000           57.78
## 3214                         Guinea 1977        179.10000           41.04
## 3215                  Guinea-Bissau 1977        135.30000           47.02
## 3216                         Guyana 1977         54.10000           61.88
## 3217                          Haiti 1977        139.20000           49.63
## 3218                       Honduras 1977         78.50000           59.97
## 3219               Hong Kong, China 1977               NA           74.06
## 3220                        Hungary 1977         29.40000           70.02
## 3221                        Iceland 1977          9.20000           76.35
## 3222                          India 1977        124.00000           53.56
## 3223                      Indonesia 1977         92.50000           57.27
## 3224                           Iran 1977         95.00000           57.78
## 3225                           Iraq 1977         61.20000           59.26
## 3226                        Ireland 1977         15.20000           72.98
## 3227                         Israel 1977         18.60000           72.62
## 3228                          Italy 1977         17.30000           73.44
## 3229                        Jamaica 1977         35.60000           72.89
## 3230                          Japan 1977          8.80000           75.35
## 3231                         Jordan 1977         49.10000           65.89
## 3232                     Kazakhstan 1977         61.40000           65.13
## 3233                          Kenya 1977         76.00000           58.10
## 3234                       Kiribati 1977         87.20000           52.58
## 3235                    South Korea 1977         17.40000           64.95
## 3236                         Kuwait 1977         36.00000           72.29
## 3237                Kyrgyz Republic 1977         84.50000           62.05
## 3238                            Lao 1977        131.20000           46.26
## 3239                         Latvia 1977               NA           69.56
## 3240                        Lebanon 1977         43.60000           66.83
## 3241                        Lesotho 1977        106.20000           52.75
## 3242                        Liberia 1977        168.30000           45.21
## 3243                          Libya 1977         65.60000           65.81
## 3244                      Lithuania 1977         19.70000           71.14
## 3245                     Luxembourg 1977         12.80000           71.61
## 3246                   Macao, China 1977               NA           71.62
## 3247                 Macedonia, FYR 1977               NA           68.76
## 3248                     Madagascar 1977        101.90000           51.63
## 3249                         Malawi 1977        170.60000           44.54
## 3250                       Malaysia 1977         30.50000           67.86
## 3251                       Maldives 1977        123.70000           53.53
## 3252                           Mali 1977        172.80000           39.97
## 3253                          Malta 1977         17.00000           73.63
## 3254                     Mauritania 1977        102.00000           53.29
## 3255                      Mauritius 1977         39.50000           65.34
## 3256                         Mexico 1977         62.80000           65.51
## 3257          Micronesia, Fed. Sts. 1977               NA           63.14
## 3258                        Moldova 1977         42.60000           65.52
## 3259                       Mongolia 1977               NA           58.36
## 3260                     Montenegro 1977               NA           72.55
## 3261                        Morocco 1977        104.00000           57.72
## 3262                     Mozambique 1977        176.40000           48.10
## 3263                        Namibia 1977         63.70000           56.56
## 3264                          Nepal 1977        152.30000           48.28
## 3265                    Netherlands 1977          9.70000           75.20
## 3266                  New Caledonia 1977               NA           65.81
## 3267                    New Zealand 1977         13.90000           72.25
## 3268                      Nicaragua 1977         91.30000           64.17
## 3269                          Niger 1977        138.90000           40.40
## 3270                        Nigeria 1977        135.80000           50.24
## 3271                         Norway 1977          9.30000           75.51
## 3272                           Oman 1977        100.10000           60.45
## 3273                       Pakistan 1977        126.10000           57.63
## 3274                         Panama 1977         39.00000           70.38
## 3275               Papua New Guinea 1977         82.50000           50.91
## 3276                       Paraguay 1977         52.60000           71.04
## 3277                           Peru 1977         87.00000           60.63
## 3278                    Philippines 1977         54.20000           63.44
## 3279                         Poland 1977         23.30000           70.78
## 3280                       Portugal 1977         29.50000           70.37
## 3281                    Puerto Rico 1977               NA           73.15
## 3282                          Qatar 1977         34.00000           71.15
## 3283                        Romania 1977         39.30000           69.95
## 3284                         Russia 1977         28.70000           67.85
## 3285                         Rwanda 1977        148.00000           46.54
## 3286                      St. Lucia 1977         31.00000           66.54
## 3287 St. Vincent and the Grenadines 1977         55.00000           66.36
## 3288                          Samoa 1977               NA           61.44
## 3289                   Saudi Arabia 1977         83.40000           63.95
## 3290                        Senegal 1977        100.70000           46.21
## 3291                         Serbia 1977               NA           70.21
## 3292                     Seychelles 1977         33.50000           67.59
## 3293                   Sierra Leone 1977        173.20000           50.11
## 3294                      Singapore 1977         12.30000           69.98
## 3295                Slovak Republic 1977               NA           70.58
## 3296                       Slovenia 1977               NA           70.66
## 3297                Solomon Islands 1977         48.90000           60.43
## 3298                   South Africa 1977         78.60000           55.30
## 3299                          Spain 1977         19.70000           74.32
## 3300                      Sri Lanka 1977         45.60000           67.60
## 3301                          Sudan 1977         89.80000           56.44
## 3302                       Suriname 1977               NA           66.76
## 3303                      Swaziland 1977         93.90000           53.24
## 3304                         Sweden 1977          8.00000           75.39
## 3305                    Switzerland 1977          9.80000           75.43
## 3306                          Syria 1977         53.90000           64.24
## 3307                     Tajikistan 1977        102.50000           63.57
## 3308                       Tanzania 1977        114.00000           53.19
## 3309                       Thailand 1977         52.90000           63.15
## 3310                    Timor-Leste 1977               NA           40.25
## 3311                           Togo 1977        114.10000           52.09
## 3312                          Tonga 1977         27.70000           66.39
## 3313            Trinidad and Tobago 1977         37.40000           67.33
## 3314                        Tunisia 1977         83.20000           61.15
## 3315                         Turkey 1977        101.50000           59.55
## 3316                   Turkmenistan 1977        106.20000           61.00
## 3317                         Uganda 1977        123.30000           51.75
## 3318                        Ukraine 1977         24.20000           69.68
## 3319           United Arab Emirates 1977         38.20000           65.41
## 3320                 United Kingdom 1977         14.10000           73.11
## 3321                  United States 1977         14.50000           73.38
## 3322                        Uruguay 1977         46.50000           69.80
## 3323                     Uzbekistan 1977               NA           65.37
## 3324                        Vanuatu 1977         59.90000           55.64
## 3325                      Venezuela 1977         39.20000           68.52
## 3326             West Bank and Gaza 1977         69.80000           63.39
## 3327                        Vietnam 1977         49.80000           63.58
## 3328                          Yemen 1977        164.60000           48.06
## 3329                         Zambia 1977         95.10000           57.36
## 3330                       Zimbabwe 1977         69.80000           60.53
## 3331                        Albania 1978         73.00000           70.86
## 3332                        Algeria 1978        113.60000           58.28
## 3333                         Angola 1978               NA           45.50
## 3334            Antigua and Barbuda 1978               NA           69.96
## 3335                      Argentina 1978         43.80000           69.57
## 3336                        Armenia 1978         65.90000           72.53
## 3337                          Aruba 1978               NA           71.74
## 3338                      Australia 1978         12.00000           73.84
## 3339                        Austria 1978         15.50000           72.20
## 3340                     Azerbaijan 1978               NA           65.68
## 3341                        Bahamas 1978         26.20000           66.37
## 3342                        Bahrain 1978         30.40000           68.21
## 3343                     Bangladesh 1978        139.10000           51.47
## 3344                       Barbados 1978         26.70000           69.22
## 3345                        Belarus 1978               NA           71.23
## 3346                        Belgium 1978         13.50000           72.64
## 3347                         Belize 1978         53.80000           69.06
## 3348                          Benin 1978        133.60000           48.43
## 3349                         Bhutan 1978        143.30000           50.21
## 3350                        Bolivia 1978        118.10000           52.54
## 3351         Bosnia and Herzegovina 1978               NA           74.12
## 3352                       Botswana 1978         60.20000           59.21
## 3353                         Brazil 1978         82.00000           63.07
## 3354                         Brunei 1978               NA           70.33
## 3355                       Bulgaria 1978         26.80000           71.24
## 3356                   Burkina Faso 1978        123.40000           45.56
## 3357                        Burundi 1978        140.00000           45.24
## 3358                       Cambodia 1978        143.30000           19.55
## 3359                       Cameroon 1978        113.00000           53.95
## 3360                         Canada 1978         11.80000           74.46
## 3361                     Cape Verde 1978         66.40000           60.82
## 3362       Central African Republic 1978        121.00000           49.70
## 3363                           Chad 1978        128.10000           49.72
## 3364                          Chile 1978         35.60000           67.25
## 3365                          China 1978         52.90000           62.15
## 3366                       Colombia 1978         50.00000           66.79
## 3367                        Comoros 1978        126.20000           52.30
## 3368               Congo, Dem. Rep. 1978        135.40000           51.11
## 3369                    Congo, Rep. 1978         74.40000           54.97
## 3370                     Costa Rica 1978         23.90000           72.00
## 3371                  Cote d'Ivoire 1978        120.20000           51.70
## 3372                        Croatia 1978               NA           70.30
## 3373                           Cuba 1978         18.70000           73.30
## 3374                         Cyprus 1978               NA           74.58
## 3375                 Czech Republic 1978               NA           71.02
## 3376                        Denmark 1978          8.80000           74.59
## 3377                       Djibouti 1978        124.30000           56.15
## 3378             Dominican Republic 1978         68.20000           65.19
## 3379                        Ecuador 1978         73.60000           63.51
## 3380                          Egypt 1978        126.00000           57.45
## 3381                    El Salvador 1978         86.20000           58.09
## 3382              Equatorial Guinea 1978               NA           44.04
## 3383                        Eritrea 1978        117.50000           46.09
## 3384                        Estonia 1978               NA           69.87
## 3385                       Ethiopia 1978        143.70000           42.07
## 3386                           Fiji 1978         38.20000           62.09
## 3387                        Finland 1978          8.10000           73.13
## 3388                         France 1978         11.00000           74.12
## 3389               French Polynesia 1978               NA           63.28
## 3390                          Gabon 1978         79.00000           51.81
## 3391                         Gambia 1978        107.60000           51.61
## 3392                        Georgia 1978         52.00000           69.31
## 3393                        Germany 1978         14.40000           72.60
## 3394                          Ghana 1978        103.80000           52.63
## 3395                         Greece 1978         24.30000           73.38
## 3396                      Greenland 1978               NA           63.78
## 3397                        Grenada 1978               NA           67.07
## 3398                      Guatemala 1978         93.70000           58.22
## 3399                         Guinea 1978        176.20000           41.63
## 3400                  Guinea-Bissau 1978        134.20000           47.27
## 3401                         Guyana 1978         53.80000           62.03
## 3402                          Haiti 1978        135.80000           49.97
## 3403                       Honduras 1978         75.30000           60.80
## 3404               Hong Kong, China 1978               NA           74.35
## 3405                        Hungary 1978         27.10000           69.56
## 3406                        Iceland 1978          8.70000           76.66
## 3407                          India 1978        120.70000           54.14
## 3408                      Indonesia 1978         90.00000           57.87
## 3409                           Iran 1978         89.40000           57.52
## 3410                           Iraq 1978         58.90000           58.94
## 3411                        Ireland 1978         14.20000           72.98
## 3412                         Israel 1978         17.20000           72.90
## 3413                          Italy 1978         16.10000           73.78
## 3414                        Jamaica 1978         34.70000           73.21
## 3415                          Japan 1978          8.30000           75.67
## 3416                         Jordan 1978         47.20000           66.46
## 3417                     Kazakhstan 1978         60.30000           65.41
## 3418                          Kenya 1978         73.70000           58.74
## 3419                       Kiribati 1978         86.80000           52.97
## 3420                    South Korea 1978         15.40000           65.31
## 3421                         Kuwait 1978         33.90000           72.72
## 3422                Kyrgyz Republic 1978         82.80000           62.30
## 3423                            Lao 1978        139.60000           46.47
## 3424                         Latvia 1978               NA           69.45
## 3425                        Lebanon 1978         42.60000           66.96
## 3426                        Lesotho 1978        101.80000           53.38
## 3427                        Liberia 1978        165.70000           45.92
## 3428                          Libya 1978         62.50000           66.62
## 3429                      Lithuania 1978         19.30000           70.93
## 3430                     Luxembourg 1978         12.20000           71.57
## 3431                   Macao, China 1978               NA           71.94
## 3432                 Macedonia, FYR 1978               NA           68.88
## 3433                     Madagascar 1978        103.00000           52.12
## 3434                         Malawi 1978        163.80000           44.92
## 3435                       Malaysia 1978         28.80000           68.21
## 3436                       Maldives 1978        117.70000           54.51
## 3437                           Mali 1978        168.70000           40.79
## 3438                          Malta 1978         16.20000           73.92
## 3439                     Mauritania 1978        100.10000           53.89
## 3440                      Mauritius 1978         36.30000           65.87
## 3441                         Mexico 1978         60.70000           66.05
## 3442          Micronesia, Fed. Sts. 1978               NA           63.37
## 3443                        Moldova 1978         41.60000           65.47
## 3444                       Mongolia 1978        121.80000           58.40
## 3445                     Montenegro 1978               NA           72.75
## 3446                        Morocco 1978        100.70000           58.39
## 3447                     Mozambique 1978        175.70000           48.52
## 3448                        Namibia 1978         63.70000           57.07
## 3449                          Nepal 1978        148.30000           48.94
## 3450                    Netherlands 1978          9.30000           75.11
## 3451                  New Caledonia 1978               NA           66.25
## 3452                    New Zealand 1978         13.50000           73.14
## 3453                      Nicaragua 1978         86.70000           64.73
## 3454                          Niger 1978        137.20000           40.90
## 3455                        Nigeria 1978        132.20000           50.84
## 3456                         Norway 1978          8.80000           75.54
## 3457                           Oman 1978         92.90000           61.57
## 3458                       Pakistan 1978        124.70000           58.05
## 3459                         Panama 1978         37.90000           70.85
## 3460               Papua New Guinea 1978         80.60000           51.65
## 3461                       Paraguay 1978         51.60000           71.28
## 3462                           Peru 1978         85.50000           61.28
## 3463                    Philippines 1978         54.00000           63.60
## 3464                         Poland 1978         22.50000           70.71
## 3465                       Portugal 1978         26.80000           70.83
## 3466                    Puerto Rico 1978               NA           73.28
## 3467                          Qatar 1978         32.40000           71.49
## 3468                        Romania 1978         37.80000           70.01
## 3469                         Russia 1978         28.20000           67.89
## 3470                         Rwanda 1978        144.90000           46.81
## 3471                      St. Lucia 1978         29.30000           67.10
## 3472 St. Vincent and the Grenadines 1978         52.10000           66.61
## 3473                          Samoa 1978               NA           62.02
## 3474                   Saudi Arabia 1978         79.00000           65.01
## 3475                        Senegal 1978         97.30000           47.33
## 3476                         Serbia 1978               NA           70.37
## 3477                     Seychelles 1978         30.50000           67.89
## 3478                   Sierra Leone 1978        171.20000           50.83
## 3479                      Singapore 1978         12.30000           70.34
## 3480                Slovak Republic 1978               NA           70.59
## 3481                       Slovenia 1978               NA           70.77
## 3482                Solomon Islands 1978         46.30000           60.89
## 3483                   South Africa 1978         74.90000           55.77
## 3484                          Spain 1978         18.40000           74.51
## 3485                      Sri Lanka 1978         43.70000           68.06
## 3486                          Sudan 1978         89.10000           56.63
## 3487                       Suriname 1978               NA           67.07
## 3488                      Swaziland 1978         90.40000           53.92
## 3489                         Sweden 1978          7.60000           75.48
## 3490                    Switzerland 1978          9.20000           75.39
## 3491                          Syria 1978         51.50000           64.84
## 3492                     Tajikistan 1978        101.30000           63.81
## 3493                       Tanzania 1978        111.90000           53.61
## 3494                       Thailand 1978         50.80000           63.62
## 3495                    Timor-Leste 1978               NA           40.27
## 3496                           Togo 1978        111.70000           52.70
## 3497                          Tonga 1978         26.60000           66.61
## 3498            Trinidad and Tobago 1978         36.30000           67.54
## 3499                        Tunisia 1978         78.10000           62.27
## 3500                         Turkey 1978         97.70000           60.29
## 3501                   Turkmenistan 1978        102.80000           61.28
## 3502                         Uganda 1978        125.60000           51.83
## 3503                        Ukraine 1978         23.80000           69.63
## 3504           United Arab Emirates 1978         34.80000           65.93
## 3505                 United Kingdom 1978         13.40000           73.04
## 3506                  United States 1978         13.80000           73.58
## 3507                        Uruguay 1978         43.20000           70.05
## 3508                     Uzbekistan 1978               NA           65.64
## 3509                        Vanuatu 1978         57.40000           56.24
## 3510                      Venezuela 1978         37.90000           68.79
## 3511             West Bank and Gaza 1978         66.00000           64.18
## 3512                        Vietnam 1978         48.80000           64.86
## 3513                          Yemen 1978        156.10000           49.08
## 3514                         Zambia 1978         95.30000           57.57
## 3515                       Zimbabwe 1978         69.20000           61.17
## 3516                        Albania 1979         68.40000           71.14
## 3517                        Algeria 1979        107.80000           59.56
## 3518                         Angola 1979               NA           45.84
## 3519            Antigua and Barbuda 1979               NA           70.28
## 3520                      Argentina 1979         40.30000           69.89
## 3521                        Armenia 1979         63.50000           72.63
## 3522                          Aruba 1979               NA           72.02
## 3523                      Australia 1979         11.30000           74.40
## 3524                        Austria 1979         14.60000           72.51
## 3525                     Azerbaijan 1979               NA           65.60
## 3526                        Bahamas 1979         25.70000           66.57
## 3527                        Bahrain 1979         28.50000           68.67
## 3528                     Bangladesh 1979        136.50000           52.44
## 3529                       Barbados 1979         25.20000           69.57
## 3530                        Belarus 1979               NA           70.82
## 3531                        Belgium 1979         12.80000           73.13
## 3532                         Belize 1979         52.20000           69.43
## 3533                          Benin 1979        130.90000           48.88
## 3534                         Bhutan 1979        138.80000           51.18
## 3535                        Bolivia 1979        115.10000           53.38
## 3536         Bosnia and Herzegovina 1979               NA           74.48
## 3537                       Botswana 1979         57.40000           59.74
## 3538                         Brazil 1979         79.00000           63.45
## 3539                         Brunei 1979               NA           70.65
## 3540                       Bulgaria 1979         25.70000           71.34
## 3541                   Burkina Faso 1979        120.20000           46.58
## 3542                        Burundi 1979        136.00000           45.60
## 3543                       Cambodia 1979        130.00000           21.91
## 3544                       Cameroon 1979        111.40000           54.52
## 3545                         Canada 1979         11.00000           74.81
## 3546                     Cape Verde 1979         64.10000           61.62
## 3547       Central African Republic 1979        119.60000           50.21
## 3548                           Chad 1979        127.40000           50.14
## 3549                          Chile 1979         31.40000           67.99
## 3550                          China 1979         50.20000           62.95
## 3551                       Colombia 1979         47.20000           67.43
## 3552                        Comoros 1979        122.50000           52.72
## 3553               Congo, Dem. Rep. 1979        133.70000           51.43
## 3554                    Congo, Rep. 1979         72.80000           55.22
## 3555                     Costa Rica 1979         21.30000           72.62
## 3556                  Cote d'Ivoire 1979        116.60000           52.31
## 3557                        Croatia 1979               NA           70.42
## 3558                           Cuba 1979         17.40000           73.59
## 3559                         Cyprus 1979         21.00000           74.79
## 3560                 Czech Republic 1979               NA           71.13
## 3561                        Denmark 1979          8.60000           74.41
## 3562                       Djibouti 1979        121.10000           56.61
## 3563             Dominican Republic 1979         66.10000           65.65
## 3564                        Ecuador 1979         70.90000           64.16
## 3565                          Egypt 1979        120.00000           58.16
## 3566                    El Salvador 1979         82.60000           57.98
## 3567              Equatorial Guinea 1979               NA           44.44
## 3568                        Eritrea 1979        115.80000           46.38
## 3569                        Estonia 1979               NA           69.66
## 3570                       Ethiopia 1979        143.50000           42.74
## 3571                           Fiji 1979         36.80000           62.37
## 3572                        Finland 1979          7.60000           73.42
## 3573                         France 1979         10.60000           74.43
## 3574               French Polynesia 1979               NA           63.90
## 3575                          Gabon 1979         76.60000           52.61
## 3576                         Gambia 1979        105.40000           52.62
## 3577                        Georgia 1979         50.50000           69.37
## 3578                        Germany 1979         13.50000           72.96
## 3579                          Ghana 1979        102.10000           52.95
## 3580                         Greece 1979         22.80000           73.68
## 3581                      Greenland 1979               NA           63.61
## 3582                        Grenada 1979               NA           67.33
## 3583                      Guatemala 1979         90.70000           58.66
## 3584                         Guinea 1979        173.20000           42.25
## 3585                  Guinea-Bissau 1979        133.20000           47.54
## 3586                         Guyana 1979         53.50000           62.18
## 3587                          Haiti 1979        132.50000           50.30
## 3588                       Honduras 1979         72.20000           61.65
## 3589               Hong Kong, China 1979               NA           74.64
## 3590                        Hungary 1979         25.30000           69.77
## 3591                        Iceland 1979          8.30000           76.88
## 3592                          India 1979        117.50000           54.65
## 3593                      Indonesia 1979         87.70000           58.45
## 3594                           Iran 1979         83.70000           56.95
## 3595                           Iraq 1979         56.90000           58.44
## 3596                        Ireland 1979         13.00000           73.28
## 3597                         Israel 1979         16.10000           73.19
## 3598                          Italy 1979         15.10000           74.11
## 3599                        Jamaica 1979         33.80000           73.52
## 3600                          Japan 1979          7.90000           76.18
## 3601                         Jordan 1979         45.30000           67.00
## 3602                     Kazakhstan 1979         59.20000           65.71
## 3603                          Kenya 1979         71.50000           59.36
## 3604                       Kiribati 1979         86.50000           53.36
## 3605                    South Korea 1979         13.70000           65.70
## 3606                         Kuwait 1979         31.80000           73.14
## 3607                Kyrgyz Republic 1979         80.90000           62.57
## 3608                            Lao 1979        137.10000           46.69
## 3609                         Latvia 1979         19.40000           68.93
## 3610                        Lebanon 1979         41.50000           67.08
## 3611                        Lesotho 1979         97.60000           54.01
## 3612                        Liberia 1979        163.10000           46.57
## 3613                          Libya 1979         59.60000           67.40
## 3614                      Lithuania 1979         18.80000           70.80
## 3615                     Luxembourg 1979         11.70000           72.25
## 3616                   Macao, China 1979               NA           72.26
## 3617                 Macedonia, FYR 1979               NA           68.98
## 3618                     Madagascar 1979        104.10000           52.58
## 3619                         Malawi 1979        157.40000           45.31
## 3620                       Malaysia 1979         27.00000           68.56
## 3621                       Maldives 1979        112.10000           55.53
## 3622                           Mali 1979        164.80000           41.61
## 3623                          Malta 1979         15.60000           74.19
## 3624                     Mauritania 1979         98.10000           54.51
## 3625                      Mauritius 1979         34.00000           66.41
## 3626                         Mexico 1979         58.50000           66.58
## 3627          Micronesia, Fed. Sts. 1979               NA           63.53
## 3628                        Moldova 1979         40.60000           65.41
## 3629                       Mongolia 1979        117.40000           58.46
## 3630                     Montenegro 1979               NA           72.95
## 3631                        Morocco 1979         97.40000           59.13
## 3632                     Mozambique 1979        175.10000           48.88
## 3633                        Namibia 1979         63.60000           57.57
## 3634                          Nepal 1979        144.30000           49.63
## 3635                    Netherlands 1979          9.00000           75.59
## 3636                  New Caledonia 1979               NA           66.68
## 3637                    New Zealand 1979         13.10000           73.18
## 3638                      Nicaragua 1979         82.10000           65.28
## 3639                          Niger 1979        135.70000           41.44
## 3640                        Nigeria 1979        129.30000           51.42
## 3641                         Norway 1979          8.40000           75.54
## 3642                           Oman 1979         86.10000           62.65
## 3643                       Pakistan 1979        123.40000           58.44
## 3644                         Panama 1979         36.80000           71.30
## 3645               Papua New Guinea 1979         78.80000           52.40
## 3646                       Paraguay 1979         50.50000           71.51
## 3647                           Peru 1979         83.90000           61.93
## 3648                    Philippines 1979         53.70000           63.81
## 3649                         Poland 1979         21.70000           71.05
## 3650                       Portugal 1979         24.60000           71.64
## 3651                    Puerto Rico 1979               NA           73.38
## 3652                          Qatar 1979         31.00000           71.83
## 3653                        Romania 1979         36.30000           70.06
## 3654                         Russia 1979         27.80000           67.61
## 3655                         Rwanda 1979        138.00000           47.12
## 3656                      St. Lucia 1979         27.90000           67.64
## 3657 St. Vincent and the Grenadines 1979         48.70000           66.88
## 3658                          Samoa 1979               NA           62.62
## 3659                   Saudi Arabia 1979         74.80000           66.03
## 3660                        Senegal 1979         94.30000           48.40
## 3661                         Serbia 1979               NA           70.53
## 3662                     Seychelles 1979         27.80000           68.16
## 3663                   Sierra Leone 1979        169.20000           51.49
## 3664                      Singapore 1979         12.30000           70.68
## 3665                Slovak Republic 1979               NA           70.92
## 3666                       Slovenia 1979               NA           70.85
## 3667                Solomon Islands 1979         43.90000           61.27
## 3668                   South Africa 1979         71.40000           56.29
## 3669                          Spain 1979         16.80000           75.05
## 3670                      Sri Lanka 1979         41.60000           68.52
## 3671                          Sudan 1979         88.50000           56.80
## 3672                       Suriname 1979               NA           67.39
## 3673                      Swaziland 1979         87.20000           54.62
## 3674                         Sweden 1979          7.40000           75.52
## 3675                    Switzerland 1979          8.70000           75.69
## 3676                          Syria 1979         49.10000           65.44
## 3677                     Tajikistan 1979        100.60000           64.04
## 3678                       Tanzania 1979        110.20000           53.98
## 3679                       Thailand 1979         48.90000           64.10
## 3680                    Timor-Leste 1979               NA           41.01
## 3681                           Togo 1979        109.20000           53.29
## 3682                          Tonga 1979         25.50000           66.84
## 3683            Trinidad and Tobago 1979         35.30000           67.73
## 3684                        Tunisia 1979         73.40000           63.36
## 3685                         Turkey 1979         94.00000           61.03
## 3686                   Turkmenistan 1979         99.60000           61.58
## 3687                         Uganda 1979        127.20000           51.93
## 3688                        Ukraine 1979         23.40000           69.36
## 3689           United Arab Emirates 1979         31.70000           66.43
## 3690                 United Kingdom 1979         12.70000           73.14
## 3691                  United States 1979         13.20000           74.03
## 3692                        Uruguay 1979         39.50000           70.32
## 3693                     Uzbekistan 1979         97.70000           65.94
## 3694                        Vanuatu 1979         54.80000           56.83
## 3695                      Venezuela 1979         36.60000           69.04
## 3696             West Bank and Gaza 1979         62.50000           64.96
## 3697                        Vietnam 1979         47.80000           65.84
## 3698                          Yemen 1979        147.70000           50.11
## 3699                         Zambia 1979         95.60000           57.66
## 3700                       Zimbabwe 1979         68.10000           61.82
## 3701                        Albania 1980         64.00000           71.39
## 3702                        Algeria 1980        101.10000           60.92
## 3703                         Angola 1980        138.30000           46.14
## 3704            Antigua and Barbuda 1980               NA           70.59
## 3705                      Argentina 1980         37.20000           70.20
## 3706                        Armenia 1980         61.30000           72.72
## 3707                          Aruba 1980               NA           72.29
## 3708                      Australia 1980         10.80000           74.56
## 3709                        Austria 1980         13.90000           72.64
## 3710                     Azerbaijan 1980         95.00000           65.55
## 3711                        Bahamas 1980         25.20000           66.75
## 3712                        Bahrain 1980         26.80000           69.09
## 3713                     Bangladesh 1980        133.70000           53.18
## 3714                       Barbados 1980         23.80000           69.91
## 3715                        Belarus 1980         19.40000           70.57
## 3716                        Belgium 1980         12.20000           73.18
## 3717                         Belize 1980         50.50000           69.78
## 3718                          Benin 1980        128.70000           49.34
## 3719                         Bhutan 1980        134.30000           52.12
## 3720                        Bolivia 1980        112.30000           54.21
## 3721         Bosnia and Herzegovina 1980         30.70000           74.82
## 3722                       Botswana 1980         54.70000           60.24
## 3723                         Brazil 1980         75.90000           63.81
## 3724                         Brunei 1980         19.00000           70.95
## 3725                       Bulgaria 1980         24.50000           71.17
## 3726                   Burkina Faso 1980        117.60000           47.61
## 3727                        Burundi 1980        131.10000           45.93
## 3728                       Cambodia 1980        117.30000           28.16
## 3729                       Cameroon 1980        109.20000           55.06
## 3730                         Canada 1980         10.30000           75.05
## 3731                     Cape Verde 1980         62.60000           62.41
## 3732       Central African Republic 1980        118.40000           50.61
## 3733                           Chad 1980        126.60000           50.56
## 3734                          Chile 1980         28.20000           68.70
## 3735                          China 1980         48.00000           63.92
## 3736                       Colombia 1980         44.60000           68.07
## 3737                        Comoros 1980        119.00000           53.15
## 3738               Congo, Dem. Rep. 1980        132.00000           51.76
## 3739                    Congo, Rep. 1980         71.20000           55.45
## 3740                     Costa Rica 1980         19.80000           73.20
## 3741                  Cote d'Ivoire 1980        113.70000           52.87
## 3742                        Croatia 1980         20.00000           70.56
## 3743                           Cuba 1980         16.70000           73.84
## 3744                         Cyprus 1980         19.40000           74.99
## 3745                 Czech Republic 1980         17.00000           70.67
## 3746                        Denmark 1980          8.30000           74.30
## 3747                       Djibouti 1980        118.10000           57.10
## 3748             Dominican Republic 1980         64.00000           66.12
## 3749                        Ecuador 1980         68.10000           64.82
## 3750                          Egypt 1980        114.30000           58.85
## 3751                    El Salvador 1980         78.80000           57.96
## 3752              Equatorial Guinea 1980               NA           44.85
## 3753                        Eritrea 1980        114.20000           46.66
## 3754                        Estonia 1980         22.40000           69.75
## 3755                       Ethiopia 1980        142.80000           42.80
## 3756                           Fiji 1980         35.30000           62.65
## 3757                        Finland 1980          7.20000           73.71
## 3758                         France 1980         10.20000           74.53
## 3759               French Polynesia 1980               NA           64.56
## 3760                          Gabon 1980         74.20000           53.42
## 3761                         Gambia 1980        103.20000           53.61
## 3762                        Georgia 1980         49.00000           69.40
## 3763                        Germany 1980         12.60000           73.14
## 3764                          Ghana 1980        100.90000           53.26
## 3765                         Greece 1980         21.30000           74.01
## 3766                      Greenland 1980               NA           63.09
## 3767                        Grenada 1980               NA           67.60
## 3768                      Guatemala 1980         87.70000           59.12
## 3769                         Guinea 1980        170.20000           42.92
## 3770                  Guinea-Bissau 1980        132.50000           47.83
## 3771                         Guyana 1980         53.20000           62.34
## 3772                          Haiti 1980        129.40000           50.62
## 3773                       Honduras 1980         69.20000           62.50
## 3774               Hong Kong, China 1980               NA           74.93
## 3775                        Hungary 1980         23.80000           69.18
## 3776                        Iceland 1980          7.80000           76.92
## 3777                          India 1980        114.30000           55.10
## 3778                      Indonesia 1980         85.40000           59.01
## 3779                           Iran 1980         78.30000           56.24
## 3780                           Iraq 1980         55.00000           57.91
## 3781                        Ireland 1980         12.00000           73.66
## 3782                         Israel 1980         15.30000           73.47
## 3783                          Italy 1980         14.30000           74.07
## 3784                        Jamaica 1980         32.90000           73.82
## 3785                          Japan 1980          7.40000           76.16
## 3786                         Jordan 1980         43.50000           67.51
## 3787                     Kazakhstan 1980         57.80000           66.05
## 3788                          Kenya 1980         69.40000           59.96
## 3789                       Kiribati 1980         86.10000           53.75
## 3790                    South Korea 1980         12.30000           66.15
## 3791                         Kuwait 1980         29.60000           73.58
## 3792                Kyrgyz Republic 1980         78.80000           62.89
## 3793                            Lao 1980        134.70000           46.91
## 3794                         Latvia 1980         19.40000           69.23
## 3795                        Lebanon 1980         40.30000           67.21
## 3796                        Lesotho 1980         93.50000           54.65
## 3797                        Liberia 1980        160.80000           47.14
## 3798                          Libya 1980         57.00000           68.13
## 3799                      Lithuania 1980         18.10000           70.78
## 3800                     Luxembourg 1980         11.20000           72.42
## 3801                   Macao, China 1980               NA           72.57
## 3802                 Macedonia, FYR 1980         52.00000           69.08
## 3803                     Madagascar 1980        105.40000           53.01
## 3804                         Malawi 1980        151.80000           45.72
## 3805                       Malaysia 1980         25.40000           68.89
## 3806                       Maldives 1980        106.80000           56.58
## 3807                           Mali 1980        161.20000           42.45
## 3808                          Malta 1980         15.00000           74.47
## 3809                     Mauritania 1980         96.30000           55.13
## 3810                      Mauritius 1980         32.30000           66.92
## 3811                         Mexico 1980         56.10000           67.09
## 3812          Micronesia, Fed. Sts. 1980         50.00000           63.64
## 3813                        Moldova 1980         39.70000           65.40
## 3814                       Mongolia 1980        113.30000           58.56
## 3815                     Montenegro 1980               NA           73.16
## 3816                        Morocco 1980         94.00000           59.93
## 3817                     Mozambique 1980        174.60000           49.17
## 3818                        Namibia 1980         63.20000           58.06
## 3819                          Nepal 1980        140.30000           50.32
## 3820                    Netherlands 1980          8.80000           75.72
## 3821                  New Caledonia 1980               NA           67.09
## 3822                    New Zealand 1980         12.70000           72.98
## 3823                      Nicaragua 1980         77.80000           65.83
## 3824                          Niger 1980        134.80000           42.00
## 3825                        Nigeria 1980        127.00000           51.95
## 3826                         Norway 1980          8.20000           75.80
## 3827                           Oman 1980         79.40000           63.70
## 3828                       Pakistan 1980        122.10000           58.79
## 3829                         Panama 1980         35.70000           71.72
## 3830               Papua New Guinea 1980         77.10000           53.11
## 3831                       Paraguay 1980         49.40000           71.73
## 3832                           Peru 1980         82.40000           62.59
## 3833                    Philippines 1980         53.20000           64.06
## 3834                         Poland 1980         21.00000           70.40
## 3835                       Portugal 1980         22.80000           71.71
## 3836                    Puerto Rico 1980               NA           73.47
## 3837                          Qatar 1980         29.70000           72.14
## 3838                        Romania 1980         34.90000           70.10
## 3839                         Russia 1980         27.30000           67.57
## 3840                         Rwanda 1980        129.10000           47.46
## 3841                      St. Lucia 1980         26.70000           68.15
## 3842 St. Vincent and the Grenadines 1980         45.20000           67.19
## 3843                          Samoa 1980         55.60000           63.20
## 3844                   Saudi Arabia 1980         70.70000           66.99
## 3845                        Senegal 1980         91.70000           49.42
## 3846                         Serbia 1980               NA           70.68
## 3847                     Seychelles 1980         25.30000           68.40
## 3848                   Sierra Leone 1980        167.30000           52.04
## 3849                      Singapore 1980         12.00000           71.04
## 3850                Slovak Republic 1980         20.00000           70.58
## 3851                       Slovenia 1980         16.00000           70.89
## 3852                Solomon Islands 1980         41.90000           61.53
## 3853                   South Africa 1980         68.00000           56.85
## 3854                          Spain 1980         15.30000           75.53
## 3855                      Sri Lanka 1980         39.40000           68.97
## 3856                          Sudan 1980         87.90000           56.95
## 3857                       Suriname 1980         40.00000           67.71
## 3858                      Swaziland 1980         83.80000           55.31
## 3859                         Sweden 1980          7.20000           75.74
## 3860                    Switzerland 1980          8.40000           75.69
## 3861                          Syria 1980         46.90000           66.01
## 3862                     Tajikistan 1980        100.40000           64.28
## 3863                       Tanzania 1980        108.90000           54.29
## 3864                       Thailand 1980         47.00000           64.62
## 3865                    Timor-Leste 1980               NA           42.45
## 3866                           Togo 1980        106.90000           53.87
## 3867                          Tonga 1980         24.60000           67.08
## 3868            Trinidad and Tobago 1980         34.30000           67.89
## 3869                        Tunisia 1980         69.20000           64.41
## 3870                         Turkey 1980         90.20000           61.74
## 3871                   Turkmenistan 1980         96.50000           61.90
## 3872                         Uganda 1980        127.70000           52.01
## 3873                        Ukraine 1980         23.00000           69.33
## 3874           United Arab Emirates 1980         28.90000           66.91
## 3875                 United Kingdom 1980         12.00000           73.57
## 3876                  United States 1980         12.60000           73.93
## 3877                        Uruguay 1980         35.50000           70.60
## 3878                     Uzbekistan 1980         91.80000           66.25
## 3879                        Vanuatu 1980         52.00000           57.41
## 3880                      Venezuela 1980         35.20000           69.30
## 3881             West Bank and Gaza 1980         59.20000           65.74
## 3882                        Vietnam 1980         46.80000           66.49
## 3883                          Yemen 1980        139.70000           51.13
## 3884                         Zambia 1980         96.10000           57.62
## 3885                       Zimbabwe 1980         66.40000           62.48
## 3886                        Albania 1981         59.90000           71.63
## 3887                        Algeria 1981         93.40000           62.31
## 3888                         Angola 1981        137.50000           46.42
## 3889            Antigua and Barbuda 1981               NA           70.90
## 3890                      Argentina 1981         34.70000           70.51
## 3891                        Armenia 1981         59.20000           72.73
## 3892                          Aruba 1981               NA           72.54
## 3893                      Australia 1981         10.40000           74.92
## 3894                        Austria 1981         13.20000           72.96
## 3895                     Azerbaijan 1981               NA           65.61
## 3896                        Bahamas 1981         24.80000           66.95
## 3897                        Bahrain 1981         25.30000           69.47
## 3898                     Bangladesh 1981        130.80000           53.72
## 3899                       Barbados 1981         22.60000           70.25
## 3900                        Belarus 1981         18.50000           70.84
## 3901                        Belgium 1981         11.70000           73.59
## 3902                         Belize 1981         49.00000           70.13
## 3903                          Benin 1981        126.60000           49.84
## 3904                         Bhutan 1981        130.00000           53.05
## 3905                        Bolivia 1981        109.70000           55.04
## 3906         Bosnia and Herzegovina 1981         28.90000           75.20
## 3907                       Botswana 1981         52.30000           60.73
## 3908                         Brazil 1981         72.70000           64.18
## 3909                         Brunei 1981               NA           71.25
## 3910                       Bulgaria 1981         23.40000           71.56
## 3911                   Burkina Faso 1981        115.60000           48.58
## 3912                        Burundi 1981        125.80000           46.22
## 3913                       Cambodia 1981        106.50000           38.00
## 3914                       Cameroon 1981        106.30000           55.56
## 3915                         Canada 1981          9.70000           75.46
## 3916                     Cape Verde 1981         61.60000           63.19
## 3917       Central African Republic 1981        117.40000           50.86
## 3918                           Chad 1981        125.70000           50.97
## 3919                          Chile 1981         25.60000           69.36
## 3920                          China 1981         46.10000           64.20
## 3921                       Colombia 1981         42.00000           68.67
## 3922                        Comoros 1981        115.40000           53.59
## 3923               Congo, Dem. Rep. 1981        130.50000           52.09
## 3924                    Congo, Rep. 1981         69.60000           55.65
## 3925                     Costa Rica 1981         19.30000           73.73
## 3926                  Cote d'Ivoire 1981        111.40000           53.38
## 3927                        Croatia 1981         19.20000           70.71
## 3928                           Cuba 1981         16.50000           74.05
## 3929                         Cyprus 1981         17.80000           75.19
## 3930                 Czech Republic 1981         16.40000           71.11
## 3931                        Denmark 1981          8.00000           74.44
## 3932                       Djibouti 1981        115.20000           57.59
## 3933             Dominican Republic 1981         62.00000           66.60
## 3934                        Ecuador 1981         65.30000           65.49
## 3935                          Egypt 1981        108.50000           59.52
## 3936                    El Salvador 1981         74.80000           58.13
## 3937              Equatorial Guinea 1981               NA           45.26
## 3938                        Eritrea 1981        112.70000           46.97
## 3939                        Estonia 1981         21.60000           69.62
## 3940                       Ethiopia 1981        141.40000           42.87
## 3941                           Fiji 1981         33.80000           62.92
## 3942                        Finland 1981          6.70000           74.03
## 3943                         France 1981          9.80000           74.69
## 3944               French Polynesia 1981               NA           65.22
## 3945                          Gabon 1981         71.90000           54.24
## 3946                         Gambia 1981        100.90000           54.59
## 3947                        Georgia 1981         47.60000           69.42
## 3948                        Germany 1981         11.80000           73.37
## 3949                          Ghana 1981        100.10000           53.60
## 3950                         Greece 1981         19.90000           74.33
## 3951                      Greenland 1981               NA           62.71
## 3952                        Grenada 1981               NA           67.86
## 3953                      Guatemala 1981         84.70000           59.60
## 3954                         Guinea 1981        167.30000           43.66
## 3955                  Guinea-Bissau 1981        131.60000           48.13
## 3956                         Guyana 1981         52.80000           62.50
## 3957                          Haiti 1981        126.20000           50.94
## 3958                       Honduras 1981         66.30000           63.36
## 3959               Hong Kong, China 1981               NA           75.22
## 3960                        Hungary 1981         22.60000           69.24
## 3961                        Iceland 1981          7.40000           76.61
## 3962                          India 1981        111.30000           55.51
## 3963                      Indonesia 1981         83.10000           59.57
## 3964                           Iran 1981         73.20000           55.62
## 3965                           Iraq 1981         53.30000           57.52
## 3966                        Ireland 1981         11.20000           74.04
## 3967                         Israel 1981         14.60000           73.74
## 3968                          Italy 1981         13.40000           74.46
## 3969                        Jamaica 1981         32.10000           74.10
## 3970                          Japan 1981          6.90000           76.57
## 3971                         Jordan 1981         41.80000           68.00
## 3972                     Kazakhstan 1981         56.30000           66.43
## 3973                          Kenya 1981         67.50000           60.52
## 3974                       Kiribati 1981         85.70000           54.17
## 3975                    South Korea 1981         11.30000           66.66
## 3976                         Kuwait 1981         27.40000           74.00
## 3977                Kyrgyz Republic 1981         76.40000           63.23
## 3978                            Lao 1981        132.30000           47.17
## 3979                         Latvia 1981         19.40000           69.18
## 3980                        Lebanon 1981         39.10000           67.36
## 3981                        Lesotho 1981         89.50000           55.25
## 3982                        Liberia 1981        158.70000           47.60
## 3983                          Libya 1981         54.60000           68.82
## 3984                      Lithuania 1981         17.60000           70.77
## 3985                     Luxembourg 1981         10.90000           72.22
## 3986                   Macao, China 1981               NA           72.88
## 3987                 Macedonia, FYR 1981         51.60000           69.21
## 3988                     Madagascar 1981        107.00000           53.36
## 3989                         Malawi 1981        147.30000           46.13
## 3990                       Malaysia 1981         23.80000           69.22
## 3991                       Maldives 1981        101.90000           57.62
## 3992                           Mali 1981        157.70000           43.30
## 3993                          Malta 1981         14.40000           74.74
## 3994                     Mauritania 1981         94.40000           55.75
## 3995                      Mauritius 1981         30.50000           67.34
## 3996                         Mexico 1981         53.70000           67.58
## 3997          Micronesia, Fed. Sts. 1981         44.40000           63.71
## 3998                        Moldova 1981         38.70000           65.48
## 3999                       Mongolia 1981        109.30000           58.73
## 4000                     Montenegro 1981               NA           73.35
## 4001                        Morocco 1981         90.60000           60.77
## 4002                     Mozambique 1981        174.10000           49.40
## 4003                        Namibia 1981         62.50000           58.54
## 4004                          Nepal 1981        136.20000           51.06
## 4005                    Netherlands 1981          8.60000           75.93
## 4006                  New Caledonia 1981               NA           67.50
## 4007                    New Zealand 1981         12.40000           73.77
## 4008                      Nicaragua 1981         73.70000           66.38
## 4009                          Niger 1981        134.60000           42.58
## 4010                        Nigeria 1981        125.40000           52.41
## 4011                         Norway 1981          8.00000           76.00
## 4012                           Oman 1981         72.80000           64.69
## 4013                       Pakistan 1981        120.70000           59.13
## 4014                         Panama 1981         34.60000           72.10
## 4015               Papua New Guinea 1981         75.50000           53.74
## 4016                       Paraguay 1981         48.30000           71.97
## 4017                           Peru 1981         80.70000           63.25
## 4018                    Philippines 1981         52.80000           64.37
## 4019                         Poland 1981         20.50000           71.38
## 4020                       Portugal 1981         21.30000           71.90
## 4021                    Puerto Rico 1981               NA           73.56
## 4022                          Qatar 1981         28.40000           72.45
## 4023                        Romania 1981         33.60000           70.12
## 4024                         Russia 1981         26.90000           67.79
## 4025                         Rwanda 1981        120.00000           47.88
## 4026                      St. Lucia 1981         25.80000           68.60
## 4027 St. Vincent and the Grenadines 1981         41.50000           67.52
## 4028                          Samoa 1981         54.00000           63.79
## 4029                   Saudi Arabia 1981         66.80000           67.89
## 4030                        Senegal 1981         89.50000           50.43
## 4031                         Serbia 1981               NA           70.84
## 4032                     Seychelles 1981         23.20000           68.63
## 4033                   Sierra Leone 1981        165.60000           52.50
## 4034                      Singapore 1981         11.40000           71.39
## 4035                Slovak Republic 1981         23.20000           70.82
## 4036                       Slovenia 1981         15.50000           70.94
## 4037                Solomon Islands 1981         40.20000           61.59
## 4038                   South Africa 1981         65.00000           57.44
## 4039                          Spain 1981         14.10000           75.67
## 4040                      Sri Lanka 1981         36.80000           69.35
## 4041                          Sudan 1981         87.30000           57.11
## 4042                       Suriname 1981               NA           68.02
## 4043                      Swaziland 1981         80.30000           56.02
## 4044                         Sweden 1981          6.90000           76.04
## 4045                    Switzerland 1981          8.10000           75.92
## 4046                          Syria 1981         44.80000           66.56
## 4047                     Tajikistan 1981        100.40000           64.53
## 4048                       Tanzania 1981        108.10000           54.56
## 4049                       Thailand 1981         45.10000           65.22
## 4050                    Timor-Leste 1981               NA           44.42
## 4051                           Togo 1981        104.80000           54.43
## 4052                          Tonga 1981         23.70000           67.32
## 4053            Trinidad and Tobago 1981         33.30000           68.03
## 4054                        Tunisia 1981         65.50000           65.40
## 4055                         Turkey 1981         86.40000           62.45
## 4056                   Turkmenistan 1981         93.40000           62.24
## 4057                         Uganda 1981        127.10000           52.09
## 4058                        Ukraine 1981         22.40000           69.36
## 4059           United Arab Emirates 1981         26.40000           67.36
## 4060                 United Kingdom 1981         11.40000           73.90
## 4061                  United States 1981         12.10000           74.36
## 4062                        Uruguay 1981         32.00000           70.89
## 4063                     Uzbekistan 1981         86.20000           66.59
## 4064                        Vanuatu 1981         49.20000           57.97
## 4065                      Venezuela 1981         33.90000           69.57
## 4066             West Bank and Gaza 1981         56.20000           66.48
## 4067                        Vietnam 1981         45.80000           66.86
## 4068                          Yemen 1981        131.90000           52.13
## 4069                         Zambia 1981         97.00000           57.45
## 4070                       Zimbabwe 1981         64.20000           63.13
## 4071                        Albania 1982         56.10000           71.88
## 4072                        Algeria 1982         84.60000           63.69
## 4073                         Angola 1982        136.80000           46.69
## 4074            Antigua and Barbuda 1982               NA           71.22
## 4075                      Argentina 1982         32.80000           70.78
## 4076                        Armenia 1982         57.10000           72.64
## 4077                          Aruba 1982               NA           72.75
## 4078                      Australia 1982         10.10000           74.70
## 4079                        Austria 1982         12.60000           73.12
## 4080                     Azerbaijan 1982         84.90000           65.73
## 4081                        Bahamas 1982         24.30000           67.12
## 4082                        Bahrain 1982         24.00000           69.83
## 4083                     Bangladesh 1982        127.80000           54.15
## 4084                       Barbados 1982         21.60000           70.58
## 4085                        Belarus 1982         17.70000           70.95
## 4086                        Belgium 1982         11.20000           73.81
## 4087                         Belize 1982         47.30000           70.47
## 4088                          Benin 1982        124.70000           50.38
## 4089                         Bhutan 1982        125.60000           53.96
## 4090                        Bolivia 1982        107.20000           55.87
## 4091         Bosnia and Herzegovina 1982         27.20000           75.65
## 4092                       Botswana 1982         50.00000           61.21
## 4093                         Brazil 1982         69.70000           64.55
## 4094                         Brunei 1982         12.50000           71.54
## 4095                       Bulgaria 1982         22.50000           71.16
## 4096                   Burkina Faso 1982        113.90000           49.45
## 4097                        Burundi 1982        120.30000           46.49
## 4098                       Cambodia 1982         98.10000           44.24
## 4099                       Cameroon 1982        103.10000           56.03
## 4100                         Canada 1982          9.20000           75.67
## 4101                     Cape Verde 1982         60.90000           63.95
## 4102       Central African Republic 1982        116.70000           50.96
## 4103                           Chad 1982        124.80000           51.38
## 4104                          Chile 1982         22.90000           69.97
## 4105                          China 1982         44.60000           65.28
## 4106                       Colombia 1982         39.70000           69.24
## 4107                        Comoros 1982        111.90000           54.03
## 4108               Congo, Dem. Rep. 1982        129.00000           52.41
## 4109                    Congo, Rep. 1982         68.00000           55.81
## 4110                     Costa Rica 1982         19.20000           74.22
## 4111                  Cote d'Ivoire 1982        109.50000           53.87
## 4112                        Croatia 1982         18.40000           70.89
## 4113                           Cuba 1982         16.30000           74.22
## 4114                         Cyprus 1982         16.30000           75.38
## 4115                 Czech Republic 1982         16.00000           71.22
## 4116                        Denmark 1982          8.00000           74.78
## 4117                       Djibouti 1982        112.20000           58.08
## 4118             Dominican Republic 1982         60.00000           67.11
## 4119                        Ecuador 1982         62.50000           66.17
## 4120                          Egypt 1982        102.60000           60.21
## 4121                    El Salvador 1982         70.80000           58.53
## 4122              Equatorial Guinea 1982        145.10000           45.69
## 4123                        Eritrea 1982        111.10000           47.33
## 4124                        Estonia 1982         20.90000           70.03
## 4125                       Ethiopia 1982        139.50000           42.93
## 4126                           Fiji 1982         32.40000           63.20
## 4127                        Finland 1982          6.50000           74.60
## 4128                         France 1982          9.50000           75.07
## 4129               French Polynesia 1982               NA           65.84
## 4130                          Gabon 1982         69.80000           55.07
## 4131                         Gambia 1982         98.60000           55.55
## 4132                        Georgia 1982         46.30000           69.46
## 4133                        Germany 1982         11.00000           73.69
## 4134                          Ghana 1982         99.30000           53.95
## 4135                         Greece 1982         18.70000           74.64
## 4136                      Greenland 1982               NA           62.80
## 4137                        Grenada 1982               NA           68.10
## 4138                      Guatemala 1982         81.80000           60.10
## 4139                         Guinea 1982        164.30000           44.47
## 4140                  Guinea-Bissau 1982        130.70000           48.45
## 4141                         Guyana 1982         52.40000           62.67
## 4142                          Haiti 1982        123.00000           51.29
## 4143                       Honduras 1982         63.50000           64.24
## 4144               Hong Kong, China 1982               NA           75.50
## 4145                        Hungary 1982         22.00000           69.47
## 4146                        Iceland 1982          7.00000           77.26
## 4147                          India 1982        108.40000           55.86
## 4148                      Indonesia 1982         80.80000           60.12
## 4149                           Iran 1982         68.50000           55.32
## 4150                           Iraq 1982         51.60000           57.41
## 4151                        Ireland 1982         10.40000           74.34
## 4152                         Israel 1982         14.00000           73.99
## 4153                          Italy 1982         12.60000           74.93
## 4154                        Jamaica 1982         31.30000           74.34
## 4155                          Japan 1982          6.50000           77.08
## 4156                         Jordan 1982         40.20000           68.45
## 4157                     Kazakhstan 1982         54.70000           66.84
## 4158                          Kenya 1982         65.80000           61.02
## 4159                       Kiribati 1982         85.10000           54.62
## 4160                    South Korea 1982         10.50000           67.21
## 4161                         Kuwait 1982         25.20000           74.41
## 4162                Kyrgyz Republic 1982         73.70000           63.62
## 4163                            Lao 1982        130.00000           47.45
## 4164                         Latvia 1982         19.10000           69.75
## 4165                        Lebanon 1982         37.80000           67.52
## 4166                        Lesotho 1982         85.80000           55.82
## 4167                        Liberia 1982        157.10000           47.97
## 4168                          Libya 1982         52.20000           69.46
## 4169                      Lithuania 1982         17.10000           71.17
## 4170                     Luxembourg 1982         10.50000           72.31
## 4171                   Macao, China 1982               NA           73.17
## 4172                 Macedonia, FYR 1982         50.20000           69.40
## 4173                     Madagascar 1982        108.50000           53.64
## 4174                         Malawi 1982        144.40000           46.53
## 4175                       Malaysia 1982         22.40000           69.53
## 4176                       Maldives 1982         97.30000           58.64
## 4177                           Mali 1982        154.20000           44.17
## 4178                          Malta 1982         13.90000           75.01
## 4179                     Mauritania 1982         92.50000           56.34
## 4180                      Mauritius 1982         28.30000           67.70
## 4181                         Mexico 1982         51.40000           68.05
## 4182          Micronesia, Fed. Sts. 1982         45.00000           63.77
## 4183                        Moldova 1982         37.40000           65.68
## 4184                       Mongolia 1982        105.60000           59.00
## 4185                     Montenegro 1982               NA           73.52
## 4186                        Morocco 1982         87.30000           61.63
## 4187                     Mozambique 1982        173.30000           49.57
## 4188                        Namibia 1982         61.50000           59.01
## 4189                          Nepal 1982        132.10000           51.81
## 4190                    Netherlands 1982          8.40000           76.01
## 4191                  New Caledonia 1982               NA           67.89
## 4192                    New Zealand 1982         12.10000           73.87
## 4193                      Nicaragua 1982         69.90000           66.95
## 4194                          Niger 1982        135.30000           43.13
## 4195                        Nigeria 1982        124.40000           52.80
## 4196                         Norway 1982          8.00000           76.13
## 4197                           Oman 1982         66.60000           65.65
## 4198                       Pakistan 1982        119.40000           59.45
## 4199                         Panama 1982         33.40000           72.47
## 4200               Papua New Guinea 1982         74.00000           54.26
## 4201                       Paraguay 1982         47.00000           72.19
## 4202                           Peru 1982         78.70000           63.90
## 4203                    Philippines 1982         52.30000           64.74
## 4204                         Poland 1982         20.00000           71.45
## 4205                       Portugal 1982         19.90000           72.73
## 4206                    Puerto Rico 1982               NA           73.65
## 4207                          Qatar 1982         27.20000           72.75
## 4208                        Romania 1982         32.50000           70.11
## 4209                         Russia 1982         26.50000           68.25
## 4210                         Rwanda 1982        111.80000           48.32
## 4211                      St. Lucia 1982         24.90000           68.99
## 4212 St. Vincent and the Grenadines 1982         37.70000           67.84
## 4213                          Samoa 1982         52.40000           64.36
## 4214                   Saudi Arabia 1982         63.10000           68.74
## 4215                        Senegal 1982         87.40000           51.44
## 4216                         Serbia 1982               NA           71.01
## 4217                     Seychelles 1982         21.40000           68.83
## 4218                   Sierra Leone 1982        164.10000           52.83
## 4219                      Singapore 1982         10.70000           71.74
## 4220                Slovak Republic 1982         22.20000           70.94
## 4221                       Slovenia 1982         14.60000           71.03
## 4222                Solomon Islands 1982         38.80000           61.46
## 4223                   South Africa 1982         62.20000           58.04
## 4224                          Spain 1982         13.20000           76.22
## 4225                      Sri Lanka 1982         34.10000           69.64
## 4226                          Sudan 1982         86.70000           57.27
## 4227                       Suriname 1982         59.10000           68.31
## 4228                      Swaziland 1982         76.50000           56.71
## 4229                         Sweden 1982          6.80000           76.36
## 4230                    Switzerland 1982          7.80000           76.26
## 4231                          Syria 1982         42.70000           67.08
## 4232                     Tajikistan 1982        100.00000           64.80
## 4233                       Tanzania 1982        107.60000           54.82
## 4234                       Thailand 1982         43.40000           65.91
## 4235                    Timor-Leste 1982               NA           46.61
## 4236                           Togo 1982        102.70000           54.97
## 4237                          Tonga 1982         23.00000           67.56
## 4238            Trinidad and Tobago 1982         32.30000           68.16
## 4239                        Tunisia 1982         62.20000           66.31
## 4240                         Turkey 1982         82.60000           63.15
## 4241                   Turkmenistan 1982         90.30000           62.57
## 4242                         Uganda 1982        125.00000           52.14
## 4243                        Ukraine 1982         21.70000           69.51
## 4244           United Arab Emirates 1982         24.20000           67.79
## 4245                 United Kingdom 1982         10.80000           74.03
## 4246                  United States 1982         11.70000           74.65
## 4247                        Uruguay 1982         29.40000           71.17
## 4248                     Uzbekistan 1982         81.20000           66.93
## 4249                        Vanuatu 1982         46.30000           58.50
## 4250                      Venezuela 1982         32.70000           69.85
## 4251             West Bank and Gaza 1982         53.30000           67.21
## 4252                        Vietnam 1982         44.80000           67.10
## 4253                          Yemen 1982        124.40000           53.09
## 4254                         Zambia 1982         98.30000           57.14
## 4255                       Zimbabwe 1982         61.60000           63.73
## 4256                        Albania 1983         52.40000           72.15
## 4257                        Algeria 1983         75.00000           64.97
## 4258                         Angola 1983        136.00000           46.96
## 4259            Antigua and Barbuda 1983               NA           71.52
## 4260                      Argentina 1983         31.30000           71.04
## 4261                        Armenia 1983         55.20000           72.43
## 4262                          Aruba 1983               NA           72.93
## 4263                      Australia 1983          9.80000           75.51
## 4264                        Austria 1983         12.00000           73.19
## 4265                     Azerbaijan 1983         83.10000           65.92
## 4266                        Bahamas 1983         24.00000           67.31
## 4267                        Bahrain 1983         22.80000           70.16
## 4268                     Bangladesh 1983        124.60000           54.57
## 4269                       Barbados 1983         20.80000           70.91
## 4270                        Belarus 1983         17.00000           70.73
## 4271                        Belgium 1983         10.70000           73.81
## 4272                         Belize 1983         45.60000           70.80
## 4273                          Benin 1983        122.80000           50.97
## 4274                         Bhutan 1983        121.10000           54.87
## 4275                        Bolivia 1983        104.70000           56.67
## 4276         Bosnia and Herzegovina 1983         25.60000           76.15
## 4277                       Botswana 1983         47.90000           61.67
## 4278                         Brazil 1983         66.70000           64.94
## 4279                         Brunei 1983         12.10000           71.84
## 4280                       Bulgaria 1983         21.70000           71.33
## 4281                   Burkina Faso 1983        112.40000           50.17
## 4282                        Burundi 1983        115.00000           46.75
## 4283                       Cambodia 1983         92.30000           49.43
## 4284                       Cameroon 1983         99.50000           56.45
## 4285                         Canada 1983          8.70000           76.04
## 4286                     Cape Verde 1983         60.30000           64.69
## 4287       Central African Republic 1983        116.20000           50.95
## 4288                           Chad 1983        123.80000           51.78
## 4289                          Chile 1983         20.80000           70.51
## 4290                          China 1983         43.40000           65.49
## 4291                       Colombia 1983         37.60000           69.72
## 4292                        Comoros 1983        108.40000           54.48
## 4293               Congo, Dem. Rep. 1983        127.70000           52.72
## 4294                    Congo, Rep. 1983         66.30000           55.93
## 4295                     Costa Rica 1983         19.10000           74.66
## 4296                  Cote d'Ivoire 1983        108.00000           54.31
## 4297                        Croatia 1983         17.50000           71.08
## 4298                           Cuba 1983         16.10000           74.36
## 4299                         Cyprus 1983         14.80000           75.58
## 4300                 Czech Republic 1983         15.60000           71.00
## 4301                        Denmark 1983          8.00000           74.65
## 4302                       Djibouti 1983        109.40000           58.55
## 4303             Dominican Republic 1983         58.20000           67.63
## 4304                        Ecuador 1983         59.70000           66.85
## 4305                          Egypt 1983         96.30000           60.93
## 4306                    El Salvador 1983         66.90000           59.19
## 4307              Equatorial Guinea 1983        145.40000           46.11
## 4308                        Eritrea 1983        109.50000           47.74
## 4309                        Estonia 1983         20.20000           69.95
## 4310                       Ethiopia 1983        137.10000           42.50
## 4311                           Fiji 1983         31.20000           63.46
## 4312                        Finland 1983          6.30000           74.51
## 4313                         France 1983          9.10000           75.06
## 4314               French Polynesia 1983               NA           66.39
## 4315                          Gabon 1983         67.90000           55.88
## 4316                         Gambia 1983         96.20000           56.48
## 4317                        Georgia 1983         45.10000           69.52
## 4318                        Germany 1983         10.40000           73.97
## 4319                          Ghana 1983         98.40000           54.34
## 4320                         Greece 1983         17.70000           74.94
## 4321                      Greenland 1983               NA           62.89
## 4322                        Grenada 1983               NA           68.35
## 4323                      Guatemala 1983         78.90000           60.62
## 4324                         Guinea 1983        161.40000           45.37
## 4325                  Guinea-Bissau 1983        129.60000           48.78
## 4326                         Guyana 1983         51.90000           62.85
## 4327                          Haiti 1983        120.00000           51.64
## 4328                       Honduras 1983         60.80000           65.12
## 4329               Hong Kong, China 1983               NA           75.77
## 4330                        Hungary 1983         22.00000           69.03
## 4331                        Iceland 1983          6.70000           76.91
## 4332                          India 1983        105.70000           56.19
## 4333                      Indonesia 1983         78.50000           60.64
## 4334                           Iran 1983         64.40000           55.49
## 4335                           Iraq 1983         50.10000           57.68
## 4336                        Ireland 1983          9.80000           74.40
## 4337                         Israel 1983         13.50000           74.49
## 4338                          Italy 1983         11.90000           74.75
## 4339                        Jamaica 1983         30.50000           74.55
## 4340                          Japan 1983          6.20000           77.11
## 4341                         Jordan 1983         38.60000           68.90
## 4342                     Kazakhstan 1983         53.00000           67.28
## 4343                          Kenya 1983         64.40000           61.42
## 4344                       Kiribati 1983         84.20000           55.08
## 4345                    South Korea 1983          9.80000           67.78
## 4346                         Kuwait 1983         23.00000           74.81
## 4347                Kyrgyz Republic 1983         70.70000           64.04
## 4348                            Lao 1983        127.70000           47.76
## 4349                         Latvia 1983         18.70000           69.51
## 4350                        Lebanon 1983         36.40000           67.68
## 4351                        Lesotho 1983         82.70000           56.34
## 4352                        Liberia 1983        156.10000           48.25
## 4353                          Libya 1983         49.90000           70.04
## 4354                      Lithuania 1983         16.60000           71.09
## 4355                     Luxembourg 1983         10.10000           73.19
## 4356                   Macao, China 1983               NA           73.46
## 4357                 Macedonia, FYR 1983         48.30000           69.63
## 4358                     Madagascar 1983        109.60000           53.86
## 4359                         Malawi 1983        143.40000           46.91
## 4360                       Malaysia 1983         21.00000           69.84
## 4361                       Maldives 1983         92.90000           59.64
## 4362                           Mali 1983        150.50000           45.02
## 4363                          Malta 1983         13.40000           75.28
## 4364                     Mauritania 1983         90.60000           56.90
## 4365                      Mauritius 1983         25.70000           67.96
## 4366                         Mexico 1983         49.20000           68.52
## 4367          Micronesia, Fed. Sts. 1983         45.40000           63.81
## 4368                        Moldova 1983         36.00000           65.98
## 4369                       Mongolia 1983        101.90000           59.34
## 4370                     Montenegro 1983               NA           73.68
## 4371                        Morocco 1983         83.90000           62.49
## 4372                     Mozambique 1983        172.30000           49.72
## 4373                        Namibia 1983         60.20000           59.45
## 4374                          Nepal 1983        128.00000           52.57
## 4375                    Netherlands 1983          8.20000           76.21
## 4376                  New Caledonia 1983               NA           68.28
## 4377                    New Zealand 1983         11.90000           73.97
## 4378                      Nicaragua 1983         66.60000           67.56
## 4379                          Niger 1983        136.70000           43.66
## 4380                        Nigeria 1983        123.90000           53.12
## 4381                         Norway 1983          8.10000           76.19
## 4382                           Oman 1983         60.70000           66.59
## 4383                       Pakistan 1983        117.90000           59.77
## 4384                         Panama 1983         32.30000           72.80
## 4385               Papua New Guinea 1983         72.60000           54.65
## 4386                       Paraguay 1983         45.70000           72.41
## 4387                           Peru 1983         76.30000           64.55
## 4388                    Philippines 1983         51.70000           65.13
## 4389                         Poland 1983         19.30000           71.29
## 4390                       Portugal 1983         18.60000           72.65
## 4391                    Puerto Rico 1983               NA           73.76
## 4392                          Qatar 1983         26.00000           73.01
## 4393                        Romania 1983         31.80000           70.10
## 4394                         Russia 1983         26.00000           68.01
## 4395                         Rwanda 1983        105.30000           48.69
## 4396                      St. Lucia 1983         24.00000           69.29
## 4397 St. Vincent and the Grenadines 1983         34.20000           68.15
## 4398                          Samoa 1983         50.80000           64.94
## 4399                   Saudi Arabia 1983         59.40000           69.54
## 4400                        Senegal 1983         85.40000           52.47
## 4401                         Serbia 1983               NA           71.19
## 4402                     Seychelles 1983         19.80000           69.02
## 4403                   Sierra Leone 1983        162.80000           53.06
## 4404                      Singapore 1983         10.00000           72.11
## 4405                Slovak Republic 1983         21.30000           70.64
## 4406                       Slovenia 1983         13.80000           70.74
## 4407                Solomon Islands 1983         37.60000           61.16
## 4408                   South Africa 1983         59.60000           58.64
## 4409                          Spain 1983         12.60000           76.00
## 4410                      Sri Lanka 1983         31.20000           69.83
## 4411                          Sudan 1983         86.10000           57.44
## 4412                       Suriname 1983         48.10000           68.57
## 4413                      Swaziland 1983         72.70000           57.38
## 4414                         Sweden 1983          6.60000           76.60
## 4415                    Switzerland 1983          7.60000           76.27
## 4416                          Syria 1983         40.80000           67.58
## 4417                     Tajikistan 1983         99.00000           65.07
## 4418                       Tanzania 1983        107.40000           55.05
## 4419                       Thailand 1983         41.60000           66.69
## 4420                    Timor-Leste 1983        170.20000           48.76
## 4421                           Togo 1983        100.70000           55.48
## 4422                          Tonga 1983         22.40000           67.80
## 4423            Trinidad and Tobago 1983         31.40000           68.28
## 4424                        Tunisia 1983         59.20000           67.13
## 4425                         Turkey 1983         78.80000           63.82
## 4426                   Turkmenistan 1983         87.30000           62.89
## 4427                         Uganda 1983        122.10000           52.17
## 4428                        Ukraine 1983         20.90000           69.48
## 4429           United Arab Emirates 1983         22.30000           68.20
## 4430                 United Kingdom 1983         10.40000           74.28
## 4431                  United States 1983         11.20000           74.71
## 4432                        Uruguay 1983         27.60000           71.46
## 4433                     Uzbekistan 1983         76.70000           67.27
## 4434                        Vanuatu 1983         43.40000           58.98
## 4435                      Venezuela 1983         31.50000           70.17
## 4436             West Bank and Gaza 1983         50.60000           67.92
## 4437                        Vietnam 1983         43.90000           67.30
## 4438                          Yemen 1983        117.60000           54.02
## 4439                         Zambia 1983        100.20000           56.71
## 4440                       Zimbabwe 1983         58.80000           64.23
## 4441                        Albania 1984         49.10000           72.42
## 4442                        Algeria 1984         65.50000           66.15
## 4443                         Angola 1984        135.30000           47.23
## 4444            Antigua and Barbuda 1984               NA           71.82
## 4445                      Argentina 1984         30.10000           71.26
## 4446                        Armenia 1984         53.30000           72.10
## 4447                          Aruba 1984               NA           73.07
## 4448                      Australia 1984          9.60000           75.98
## 4449                        Austria 1984         11.30000           73.73
## 4450                     Azerbaijan 1984         81.50000           66.15
## 4451                        Bahamas 1984         23.70000           67.50
## 4452                        Bahrain 1984         21.90000           70.46
## 4453                     Bangladesh 1984        121.30000           55.00
## 4454                       Barbados 1984         20.10000           71.23
## 4455                        Belarus 1984         16.50000           70.09
## 4456                        Belgium 1984         10.20000           74.31
## 4457                         Belize 1984         43.80000           71.09
## 4458                          Benin 1984        120.90000           51.62
## 4459                         Bhutan 1984        117.00000           55.78
## 4460                        Bolivia 1984        102.10000           57.47
## 4461         Bosnia and Herzegovina 1984         26.20000           76.63
## 4462                       Botswana 1984         46.00000           62.08
## 4463                         Brazil 1984         64.00000           65.34
## 4464                         Brunei 1984         11.60000           72.12
## 4465                       Bulgaria 1984         20.70000           71.43
## 4466                   Burkina Faso 1984        110.80000           50.71
## 4467                        Burundi 1984        110.60000           46.95
## 4468                       Cambodia 1984         89.00000           53.22
## 4469                       Cameroon 1984         95.80000           56.83
## 4470                         Canada 1984          8.30000           76.33
## 4471                     Cape Verde 1984         59.40000           65.43
## 4472       Central African Republic 1984        115.90000           50.81
## 4473                           Chad 1984        122.70000           52.15
## 4474                          Chile 1984         19.50000           71.00
## 4475                          China 1984         42.60000           65.68
## 4476                       Colombia 1984         35.70000           70.13
## 4477                        Comoros 1984        105.00000           54.93
## 4478               Congo, Dem. Rep. 1984        126.30000           53.00
## 4479                    Congo, Rep. 1984         64.60000           55.98
## 4480                     Costa Rica 1984         18.80000           75.04
## 4481                  Cote d'Ivoire 1984        106.90000           54.69
## 4482                        Croatia 1984         16.70000           71.31
## 4483                           Cuba 1984         15.70000           74.48
## 4484                         Cyprus 1984         13.50000           75.76
## 4485                 Czech Republic 1984         15.40000           71.26
## 4486                        Denmark 1984          8.00000           74.81
## 4487                       Djibouti 1984        106.50000           58.97
## 4488             Dominican Republic 1984         56.40000           68.18
## 4489                        Ecuador 1984         57.10000           67.53
## 4490                          Egypt 1984         90.00000           61.65
## 4491                    El Salvador 1984         63.10000           60.11
## 4492              Equatorial Guinea 1984        142.70000           46.52
## 4493                        Eritrea 1984        107.80000           48.21
## 4494                        Estonia 1984         19.60000           69.83
## 4495                       Ethiopia 1984        134.50000           39.46
## 4496                           Fiji 1984         30.10000           63.71
## 4497                        Finland 1984          6.10000           74.82
## 4498                         France 1984          8.80000           75.56
## 4499               French Polynesia 1984               NA           66.87
## 4500                          Gabon 1984         66.20000           56.66
## 4501                         Gambia 1984         93.70000           57.37
## 4502                        Georgia 1984         44.10000           69.62
## 4503                        Germany 1984          9.80000           74.44
## 4504                          Ghana 1984         96.80000           54.76
## 4505                         Greece 1984         16.70000           75.21
## 4506                      Greenland 1984               NA           63.05
## 4507                        Grenada 1984         19.50000           68.59
## 4508                      Guatemala 1984         76.10000           61.16
## 4509                         Guinea 1984        158.50000           46.32
## 4510                  Guinea-Bissau 1984        128.40000           49.13
## 4511                         Guyana 1984         51.40000           63.02
## 4512                          Haiti 1984        117.10000           52.02
## 4513                       Honduras 1984         58.20000           66.01
## 4514               Hong Kong, China 1984               NA           76.03
## 4515                        Hungary 1984         21.90000           69.07
## 4516                        Iceland 1984          6.40000           77.71
## 4517                          India 1984        103.10000           56.51
## 4518                      Indonesia 1984         76.20000           61.16
## 4519                           Iran 1984         60.80000           56.19
## 4520                           Iraq 1984         48.70000           58.34
## 4521                        Ireland 1984          9.30000           74.87
## 4522                         Israel 1984         12.80000           74.78
## 4523                          Italy 1984         11.20000           75.51
## 4524                        Jamaica 1984         29.70000           74.70
## 4525                          Japan 1984          5.80000           77.50
## 4526                         Jordan 1984         37.10000           69.33
## 4527                     Kazakhstan 1984         51.40000           67.70
## 4528                          Kenya 1984         63.40000           61.74
## 4529                       Kiribati 1984         83.00000           55.56
## 4530                    South Korea 1984          9.20000           68.37
## 4531                         Kuwait 1984         21.10000           75.22
## 4532                Kyrgyz Republic 1984         67.50000           64.45
## 4533                            Lao 1984        125.30000           48.12
## 4534                         Latvia 1984         17.80000           69.56
## 4535                        Lebanon 1984         35.00000           67.87
## 4536                        Lesotho 1984         79.80000           56.83
## 4537                        Liberia 1984        155.90000           48.46
## 4538                          Libya 1984         47.60000           70.58
## 4539                      Lithuania 1984         16.10000           70.60
## 4540                     Luxembourg 1984          9.70000           72.94
## 4541                   Macao, China 1984               NA           73.75
## 4542                 Macedonia, FYR 1984         46.20000           69.92
## 4543                     Madagascar 1984        110.00000           54.03
## 4544                         Malawi 1984        144.60000           47.26
## 4545                       Malaysia 1984         19.70000           70.14
## 4546                       Maldives 1984         88.80000           60.60
## 4547                           Mali 1984        147.00000           45.86
## 4548                          Malta 1984         12.80000           75.54
## 4549                     Mauritania 1984         88.50000           57.41
## 4550                      Mauritius 1984         23.90000           68.14
## 4551                         Mexico 1984         47.30000           68.97
## 4552          Micronesia, Fed. Sts. 1984         45.70000           63.86
## 4553                        Moldova 1984         34.50000           66.38
## 4554                       Mongolia 1984         98.30000           59.76
## 4555                     Montenegro 1984         23.80000           73.83
## 4556                        Morocco 1984         80.60000           63.33
## 4557                     Mozambique 1984        170.90000           49.87
## 4558                        Namibia 1984         58.70000           59.87
## 4559                          Nepal 1984        123.90000           53.36
## 4560                    Netherlands 1984          8.00000           76.28
## 4561                  New Caledonia 1984               NA           68.65
## 4562                    New Zealand 1984         11.60000           74.53
## 4563                      Nicaragua 1984         63.60000           68.20
## 4564                          Niger 1984        138.30000           44.15
## 4565                        Nigeria 1984        123.90000           53.36
## 4566                         Norway 1984          8.20000           76.36
## 4567                           Oman 1984         55.30000           67.48
## 4568                       Pakistan 1984        116.40000           60.09
## 4569                         Panama 1984         31.10000           73.13
## 4570               Papua New Guinea 1984         71.30000           54.92
## 4571                       Paraguay 1984         44.40000           72.64
## 4572                           Peru 1984         73.70000           65.18
## 4573                    Philippines 1984         50.90000           65.53
## 4574                         Poland 1984         18.60000           71.03
## 4575                       Portugal 1984         17.60000           72.94
## 4576                    Puerto Rico 1984               NA           73.89
## 4577                          Qatar 1984         24.80000           73.27
## 4578                        Romania 1984         31.60000           70.08
## 4579                         Russia 1984         25.60000           67.53
## 4580                         Rwanda 1984        100.90000           48.88
## 4581                      St. Lucia 1984         23.20000           69.53
## 4582 St. Vincent and the Grenadines 1984         31.00000           68.43
## 4583                          Samoa 1984         31.70000           65.51
## 4584                   Saudi Arabia 1984         55.90000           70.30
## 4585                        Senegal 1984         83.20000           53.48
## 4586                         Serbia 1984         34.50000           71.38
## 4587                     Seychelles 1984         18.60000           69.17
## 4588                   Sierra Leone 1984        161.50000           53.16
## 4589                      Singapore 1984          9.40000           72.49
## 4590                Slovak Republic 1984         20.30000           70.88
## 4591                       Slovenia 1984         13.10000           71.20
## 4592                Solomon Islands 1984         36.50000           60.74
## 4593                   South Africa 1984         57.30000           59.22
## 4594                          Spain 1984         12.00000           76.38
## 4595                      Sri Lanka 1984         28.20000           69.93
## 4596                          Sudan 1984         85.40000           57.61
## 4597                       Suriname 1984         46.90000           68.79
## 4598                      Swaziland 1984         68.90000           58.00
## 4599                         Sweden 1984          6.50000           76.86
## 4600                    Switzerland 1984          7.40000           76.87
## 4601                          Syria 1984         39.10000           68.05
## 4602                     Tajikistan 1984         97.30000           65.34
## 4603                       Tanzania 1984        107.00000           55.26
## 4604                       Thailand 1984         40.00000           67.52
## 4605                    Timor-Leste 1984        163.50000           50.76
## 4606                           Togo 1984         98.90000           55.96
## 4607                          Tonga 1984         21.90000           68.04
## 4608            Trinidad and Tobago 1984         30.50000           68.39
## 4609                        Tunisia 1984         56.40000           67.87
## 4610                         Turkey 1984         75.10000           64.49
## 4611                   Turkmenistan 1984         84.40000           63.18
## 4612                         Uganda 1984        119.30000           52.16
## 4613                        Ukraine 1984         20.10000           69.17
## 4614           United Arab Emirates 1984         20.70000           68.60
## 4615                 United Kingdom 1984         10.00000           74.66
## 4616                  United States 1984         10.90000           74.81
## 4617                        Uruguay 1984         26.40000           71.72
## 4618                     Uzbekistan 1984         72.50000           67.59
## 4619                        Vanuatu 1984         40.60000           59.44
## 4620                      Venezuela 1984         30.50000           70.53
## 4621             West Bank and Gaza 1984         48.10000           68.59
## 4622                        Vietnam 1984         43.00000           67.51
## 4623                          Yemen 1984        111.50000           54.89
## 4624                         Zambia 1984        102.70000           56.17
## 4625                       Zimbabwe 1984         56.00000           64.63
## 4626                        Albania 1985         45.90000           72.71
## 4627                        Algeria 1985         57.20000           67.18
## 4628                         Angola 1985        134.90000           47.50
## 4629            Antigua and Barbuda 1985               NA           72.13
## 4630                      Argentina 1985         29.00000           71.46
## 4631                        Armenia 1985         51.40000           71.70
## 4632                          Aruba 1985               NA           73.18
## 4633                      Australia 1985          9.30000           75.41
## 4634                        Austria 1985         10.70000           73.95
## 4635                     Azerbaijan 1985         79.90000           66.37
## 4636                        Bahamas 1985         23.40000           67.67
## 4637                        Bahrain 1985         21.10000           70.73
## 4638                     Bangladesh 1985        117.90000           55.47
## 4639                       Barbados 1985         19.50000           71.54
## 4640                        Belarus 1985         16.00000           70.28
## 4641                        Belgium 1985          9.90000           74.41
## 4642                         Belize 1985         41.90000           71.34
## 4643                          Benin 1985        118.90000           52.33
## 4644                         Bhutan 1985        112.90000           56.69
## 4645                        Bolivia 1985         99.50000           58.22
## 4646         Bosnia and Herzegovina 1985         24.10000           76.95
## 4647                       Botswana 1985         44.40000           62.44
## 4648                         Brazil 1985         61.40000           65.76
## 4649                         Brunei 1985         11.20000           72.41
## 4650                       Bulgaria 1985         19.70000           71.15
## 4651                   Burkina Faso 1985        109.00000           51.08
## 4652                        Burundi 1985        106.90000           47.08
## 4653                       Cambodia 1985         87.50000           55.50
## 4654                       Cameroon 1985         92.40000           57.17
## 4655                         Canada 1985          8.00000           76.31
## 4656                     Cape Verde 1985         58.00000           66.12
## 4657       Central African Republic 1985        115.70000           50.57
## 4658                           Chad 1985        121.50000           52.51
## 4659                          Chile 1985         18.90000           71.42
## 4660                          China 1985         42.20000           65.87
## 4661                       Colombia 1985         34.10000           70.48
## 4662                        Comoros 1985        101.80000           55.36
## 4663               Congo, Dem. Rep. 1985        125.20000           53.28
## 4664                    Congo, Rep. 1985         63.10000           55.94
## 4665                     Costa Rica 1985         18.20000           75.37
## 4666                  Cote d'Ivoire 1985        106.10000           55.02
## 4667                        Croatia 1985         15.70000           71.54
## 4668                           Cuba 1985         15.00000           74.57
## 4669                         Cyprus 1985         12.20000           75.95
## 4670                 Czech Republic 1985         15.10000           71.48
## 4671                        Denmark 1985          8.00000           74.68
## 4672                       Djibouti 1985        103.80000           59.38
## 4673             Dominican Republic 1985         54.60000           68.75
## 4674                        Ecuador 1985         54.60000           68.18
## 4675                          Egypt 1985         83.90000           62.38
## 4676                    El Salvador 1985         59.50000           61.24
## 4677              Equatorial Guinea 1985        140.10000           46.92
## 4678                        Eritrea 1985        106.00000           48.77
## 4679                        Estonia 1985         19.00000           69.97
## 4680                       Ethiopia 1985        132.00000           35.43
## 4681                           Fiji 1985         29.10000           63.96
## 4682                        Finland 1985          6.00000           74.49
## 4683                         France 1985          8.50000           75.67
## 4684               French Polynesia 1985               NA           67.27
## 4685                          Gabon 1985         64.70000           57.40
## 4686                         Gambia 1985         91.30000           58.21
## 4687                        Georgia 1985         43.20000           69.75
## 4688                        Germany 1985          9.20000           74.55
## 4689                          Ghana 1985         94.70000           55.23
## 4690                         Greece 1985         15.80000           75.47
## 4691                      Greenland 1985               NA           63.42
## 4692                        Grenada 1985         19.40000           68.83
## 4693                      Guatemala 1985         73.20000           61.72
## 4694                         Guinea 1985        155.70000           47.33
## 4695                  Guinea-Bissau 1985        127.30000           49.49
## 4696                         Guyana 1985         50.80000           63.21
## 4697                          Haiti 1985        114.30000           52.42
## 4698                       Honduras 1985         55.80000           66.86
## 4699               Hong Kong, China 1985               NA           76.28
## 4700                        Hungary 1985         21.40000           69.01
## 4701                        Iceland 1985          6.10000           77.85
## 4702                          India 1985        100.60000           56.81
## 4703                      Indonesia 1985         74.00000           61.66
## 4704                           Iran 1985         57.60000           57.39
## 4705                           Iraq 1985         47.40000           59.36
## 4706                        Ireland 1985          8.90000           74.84
## 4707                         Israel 1985         12.10000           75.10
## 4708                          Italy 1985         10.50000           75.62
## 4709                        Jamaica 1985         29.00000           74.79
## 4710                          Japan 1985          5.50000           77.80
## 4711                         Jordan 1985         35.70000           69.75
## 4712                     Kazakhstan 1985         49.90000           68.07
## 4713                          Kenya 1985         62.70000           61.96
## 4714                       Kiribati 1985         81.40000           56.04
## 4715                    South Korea 1985          8.50000           68.98
## 4716                         Kuwait 1985         19.70000           75.59
## 4717                Kyrgyz Republic 1985         64.40000           64.86
## 4718                            Lao 1985        123.00000           48.54
## 4719                         Latvia 1985         16.80000           69.72
## 4720                        Lebanon 1985         33.60000           68.07
## 4721                        Lesotho 1985         77.40000           57.31
## 4722                        Liberia 1985        156.70000           48.58
## 4723                          Libya 1985         45.50000           71.09
## 4724                      Lithuania 1985         15.40000           70.78
## 4725                     Luxembourg 1985          9.40000           73.51
## 4726                   Macao, China 1985               NA           74.03
## 4727                 Macedonia, FYR 1985         45.00000           70.26
## 4728                     Madagascar 1985        109.60000           54.19
## 4729                         Malawi 1985        146.90000           47.60
## 4730                       Malaysia 1985         18.60000           70.45
## 4731                       Maldives 1985         84.90000           61.51
## 4732                           Mali 1985        143.70000           46.68
## 4733                          Malta 1985         12.30000           75.81
## 4734                     Mauritania 1985         86.30000           57.86
## 4735                      Mauritius 1985         23.70000           68.26
## 4736                         Mexico 1985         45.50000           69.40
## 4737          Micronesia, Fed. Sts. 1985         45.60000           63.92
## 4738                        Moldova 1985         32.90000           66.83
## 4739                       Mongolia 1985         94.60000           60.22
## 4740                     Montenegro 1985         21.80000           73.96
## 4741                        Morocco 1985         77.20000           64.14
## 4742                     Mozambique 1985        169.20000           50.02
## 4743                        Namibia 1985         57.10000           60.27
## 4744                          Nepal 1985        119.70000           54.17
## 4745                    Netherlands 1985          7.90000           76.34
## 4746                  New Caledonia 1985               NA           69.02
## 4747                    New Zealand 1985         11.30000           74.03
## 4748                      Nicaragua 1985         60.90000           68.89
## 4749                          Niger 1985        139.80000           44.63
## 4750                        Nigeria 1985        124.30000           53.54
## 4751                         Norway 1985          8.30000           76.07
## 4752                           Oman 1985         50.40000           68.35
## 4753                       Pakistan 1985        114.80000           60.43
## 4754                         Panama 1985         30.10000           73.45
## 4755               Papua New Guinea 1985         70.20000           55.08
## 4756                       Paraguay 1985         43.20000           72.87
## 4757                           Peru 1985         70.70000           65.80
## 4758                    Philippines 1985         49.80000           65.95
## 4759                         Poland 1985         17.80000           70.78
## 4760                       Portugal 1985         16.50000           73.22
## 4761                    Puerto Rico 1985               NA           74.00
## 4762                          Qatar 1985         23.70000           73.51
## 4763                        Romania 1985         31.80000           70.05
## 4764                         Russia 1985         25.00000           68.19
## 4765                         Rwanda 1985         97.80000           49.15
## 4766                      St. Lucia 1985         22.20000           69.70
## 4767 St. Vincent and the Grenadines 1985         28.10000           68.68
## 4768                          Samoa 1985         30.50000           66.10
## 4769                   Saudi Arabia 1985         52.30000           71.01
## 4770                        Senegal 1985         80.80000           54.45
## 4771                         Serbia 1985         33.50000           71.58
## 4772                     Seychelles 1985         17.50000           69.30
## 4773                   Sierra Leone 1985        160.40000           53.14
## 4774                      Singapore 1985          8.80000           72.87
## 4775                Slovak Republic 1985         19.40000           70.89
## 4776                       Slovenia 1985         12.30000           71.63
## 4777                Solomon Islands 1985         35.60000           60.26
## 4778                   South Africa 1985         55.10000           59.78
## 4779                          Spain 1985         11.40000           76.34
## 4780                      Sri Lanka 1985         25.20000           69.97
## 4781                          Sudan 1985         84.60000           57.81
## 4782                       Suriname 1985         45.90000           68.98
## 4783                      Swaziland 1985         65.30000           58.60
## 4784                         Sweden 1985          6.40000           76.72
## 4785                    Switzerland 1985          7.30000           76.99
## 4786                          Syria 1985         37.40000           68.51
## 4787                     Tajikistan 1985         94.90000           65.55
## 4788                       Tanzania 1985        106.40000           55.44
## 4789                       Thailand 1985         38.30000           68.36
## 4790                    Timor-Leste 1985        157.00000           52.51
## 4791                           Togo 1985         97.10000           56.39
## 4792                          Tonga 1985         21.40000           68.27
## 4793            Trinidad and Tobago 1985         29.80000           68.50
## 4794                        Tunisia 1985         53.90000           68.56
## 4795                         Turkey 1985         71.50000           65.15
## 4796                   Turkmenistan 1985         81.70000           63.44
## 4797                         Uganda 1985        117.20000           52.09
## 4798                        Ukraine 1985         19.30000           69.47
## 4799           United Arab Emirates 1985         19.30000           68.98
## 4800                 United Kingdom 1985          9.70000           74.51
## 4801                  United States 1985         10.60000           74.79
## 4802                        Uruguay 1985         25.30000           71.97
## 4803                     Uzbekistan 1985         68.80000           67.85
## 4804                        Vanuatu 1985         38.00000           59.87
## 4805                      Venezuela 1985         29.60000           70.89
## 4806             West Bank and Gaza 1985         45.60000           69.23
## 4807                        Vietnam 1985         42.00000           67.77
## 4808                          Yemen 1985        106.20000           55.69
## 4809                         Zambia 1985        105.60000           55.54
## 4810                       Zimbabwe 1985         53.60000           64.86
## 4811                        Albania 1986         43.20000           72.96
## 4812                        Algeria 1986         50.90000           68.04
## 4813                         Angola 1986        134.40000           47.75
## 4814            Antigua and Barbuda 1986               NA           72.42
## 4815                      Argentina 1986         28.10000           71.66
## 4816                        Armenia 1986         49.60000           71.24
## 4817                          Aruba 1986               NA           73.26
## 4818                      Australia 1986          9.10000           76.08
## 4819                        Austria 1986         10.00000           74.43
## 4820                     Azerbaijan 1986         78.50000           66.48
## 4821                        Bahamas 1986         22.90000           67.86
## 4822                        Bahrain 1986         20.50000           70.98
## 4823                     Bangladesh 1986        114.40000           55.96
## 4824                       Barbados 1986         18.80000           71.85
## 4825                        Belarus 1986         15.40000           71.66
## 4826                        Belgium 1986          9.50000           74.61
## 4827                         Belize 1986         39.90000           71.51
## 4828                          Benin 1986        116.90000           53.09
## 4829                         Bhutan 1986        108.90000           57.61
## 4830                        Bolivia 1986         96.80000           58.96
## 4831         Bosnia and Herzegovina 1986         22.10000           76.89
## 4832                       Botswana 1986         43.00000           62.70
## 4833                         Brazil 1986         59.00000           66.18
## 4834                         Brunei 1986         10.70000           72.69
## 4835                       Bulgaria 1986         18.80000           71.63
## 4836                   Burkina Faso 1986        107.10000           51.28
## 4837                        Burundi 1986        104.50000           47.05
## 4838                       Cambodia 1986         86.60000           56.49
## 4839                       Cameroon 1986         89.40000           57.48
## 4840                         Canada 1986          7.70000           76.46
## 4841                     Cape Verde 1986         56.20000           66.75
## 4842       Central African Republic 1986        115.60000           50.21
## 4843                           Chad 1986        120.40000           52.81
## 4844                          Chile 1986         18.60000           71.80
## 4845                          China 1986         42.00000           66.05
## 4846                       Colombia 1986         32.70000           70.74
## 4847                        Comoros 1986         98.70000           55.77
## 4848               Congo, Dem. Rep. 1986        124.00000           53.55
## 4849                    Congo, Rep. 1986         61.80000           55.79
## 4850                     Costa Rica 1986         17.30000           75.66
## 4851                  Cote d'Ivoire 1986        105.50000           55.26
## 4852                        Croatia 1986         14.80000           71.78
## 4853                           Cuba 1986         14.10000           74.62
## 4854                         Cyprus 1986         11.30000           76.12
## 4855                 Czech Republic 1986         14.70000           71.42
## 4856                        Denmark 1986          8.00000           74.86
## 4857                       Djibouti 1986        101.20000           59.74
## 4858             Dominican Republic 1986         52.90000           69.34
## 4859                        Ecuador 1986         52.30000           68.83
## 4860                          Egypt 1986         78.40000           63.07
## 4861                    El Salvador 1986         56.20000           62.54
## 4862              Equatorial Guinea 1986        137.70000           47.33
## 4863                        Eritrea 1986        103.90000           49.38
## 4864                        Estonia 1986         18.50000           71.11
## 4865                       Ethiopia 1986        129.70000           41.39
## 4866                           Fiji 1986         28.20000           64.20
## 4867                        Finland 1986          6.00000           74.86
## 4868                         France 1986          8.20000           75.95
## 4869               French Polynesia 1986               NA           67.59
## 4870                          Gabon 1986         63.50000           58.04
## 4871                         Gambia 1986         88.90000           58.97
## 4872                        Georgia 1986         42.50000           69.86
## 4873                        Germany 1986          8.70000           74.75
## 4874                          Ghana 1986         92.10000           55.75
## 4875                         Greece 1986         14.90000           75.73
## 4876                      Greenland 1986               NA           63.81
## 4877                        Grenada 1986         19.30000           69.06
## 4878                      Guatemala 1986         70.40000           62.28
## 4879                         Guinea 1986        152.80000           48.35
## 4880                  Guinea-Bissau 1986        145.90000           49.87
## 4881                         Guyana 1986         50.20000           63.41
## 4882                          Haiti 1986        111.50000           52.81
## 4883                       Honduras 1986         53.40000           67.67
## 4884               Hong Kong, China 1986               NA           76.53
## 4885                        Hungary 1986         20.60000           69.22
## 4886                        Iceland 1986          5.90000           78.38
## 4887                          India 1986         98.10000           57.11
## 4888                      Indonesia 1986         71.60000           62.15
## 4889                           Iran 1986         54.70000           59.01
## 4890                           Iraq 1986         46.10000           60.65
## 4891                        Ireland 1986          8.70000           74.93
## 4892                         Israel 1986         11.50000           74.92
## 4893                          Italy 1986          9.90000           75.94
## 4894                        Jamaica 1986         28.30000           74.84
## 4895                          Japan 1986          5.20000           78.22
## 4896                         Jordan 1986         34.30000           70.15
## 4897                     Kazakhstan 1986         48.50000           68.34
## 4898                          Kenya 1986         62.50000           62.09
## 4899                       Kiribati 1986         79.50000           56.50
## 4900                    South Korea 1986          7.90000           69.58
## 4901                         Kuwait 1986         18.50000           75.95
## 4902                Kyrgyz Republic 1986         61.40000           65.23
## 4903                            Lao 1986        120.60000           49.02
## 4904                         Latvia 1986         15.70000           71.09
## 4905                        Lebanon 1986         32.20000           68.29
## 4906                        Lesotho 1986         75.30000           57.88
## 4907                        Liberia 1986        158.60000           48.62
## 4908                          Libya 1986         43.40000           71.56
## 4909                      Lithuania 1986         14.50000           72.45
## 4910                     Luxembourg 1986          8.90000           74.44
## 4911                   Macao, China 1986               NA           74.31
## 4912                 Macedonia, FYR 1986         44.30000           70.60
## 4913                     Madagascar 1986        108.30000           54.38
## 4914                         Malawi 1986        149.00000           47.90
## 4915                       Malaysia 1986         17.50000           70.73
## 4916                       Maldives 1986         81.20000           62.41
## 4917                           Mali 1986        140.70000           47.45
## 4918                          Malta 1986         11.70000           76.08
## 4919                     Mauritania 1986         84.10000           58.28
## 4920                      Mauritius 1986         24.40000           68.38
## 4921                         Mexico 1986         43.80000           69.84
## 4922          Micronesia, Fed. Sts. 1986         45.40000           63.99
## 4923                        Moldova 1986         31.40000           67.29
## 4924                       Mongolia 1986         91.00000           60.71
## 4925                     Montenegro 1986         19.90000           74.08
## 4926                        Morocco 1986         74.10000           64.91
## 4927                     Mozambique 1986        167.50000           50.21
## 4928                        Namibia 1986         55.40000           60.65
## 4929                          Nepal 1986        115.40000           54.98
## 4930                    Netherlands 1986          7.70000           76.31
## 4931                  New Caledonia 1986               NA           69.37
## 4932                    New Zealand 1986         11.00000           74.28
## 4933                      Nicaragua 1986         58.60000           69.67
## 4934                          Niger 1986        140.90000           45.09
## 4935                        Nigeria 1986        124.90000           53.67
## 4936                         Norway 1986          8.30000           76.21
## 4937                           Oman 1986         45.80000           69.17
## 4938                       Pakistan 1986        113.10000           60.77
## 4939                         Panama 1986         29.10000           73.76
## 4940               Papua New Guinea 1986         69.10000           55.19
## 4941                       Paraguay 1986         41.90000           73.11
## 4942                           Peru 1986         67.60000           66.41
## 4943                    Philippines 1986         48.40000           66.35
## 4944                         Poland 1986         17.10000           71.07
## 4945                       Portugal 1986         15.50000           73.61
## 4946                    Puerto Rico 1986               NA           74.07
## 4947                          Qatar 1986         22.50000           73.74
## 4948                        Romania 1986         32.20000           70.02
## 4949                         Russia 1986         24.30000           69.80
## 4950                         Rwanda 1986         95.10000           49.42
## 4951                      St. Lucia 1986         21.30000           69.83
## 4952 St. Vincent and the Grenadines 1986         25.80000           68.92
## 4953                          Samoa 1986         29.40000           66.67
## 4954                   Saudi Arabia 1986         48.80000           71.66
## 4955                        Senegal 1986         78.10000           55.36
## 4956                         Serbia 1986         32.50000           71.78
## 4957                     Seychelles 1986         16.70000           69.36
## 4958                   Sierra Leone 1986        159.40000           52.98
## 4959                      Singapore 1986          8.40000           73.27
## 4960                Slovak Republic 1986         18.60000           71.07
## 4961                       Slovenia 1986         11.50000           72.17
## 4962                Solomon Islands 1986         34.80000           59.84
## 4963                   South Africa 1986         53.20000           60.32
## 4964                          Spain 1986         10.90000           76.59
## 4965                      Sri Lanka 1986         22.60000           70.00
## 4966                          Sudan 1986         83.80000           58.01
## 4967                       Suriname 1986         44.70000           69.15
## 4968                      Swaziland 1986         62.00000           59.15
## 4969                         Sweden 1986          6.30000           76.98
## 4970                    Switzerland 1986          7.20000           77.17
## 4971                          Syria 1986         35.80000           68.94
## 4972                     Tajikistan 1986         91.90000           65.69
## 4973                       Tanzania 1986        105.40000           55.54
## 4974                       Thailand 1986         36.70000           69.15
## 4975                    Timor-Leste 1986        155.90000           53.99
## 4976                           Togo 1986         95.50000           56.79
## 4977                          Tonga 1986         20.90000           68.48
## 4978            Trinidad and Tobago 1986         29.00000           68.62
## 4979                        Tunisia 1986         51.60000           69.20
## 4980                         Turkey 1986         68.10000           65.76
## 4981                   Turkmenistan 1986         79.20000           63.63
## 4982                         Uganda 1986        115.70000           51.94
## 4983                        Ukraine 1986         18.60000           70.82
## 4984           United Arab Emirates 1986         18.00000           69.34
## 4985                 United Kingdom 1986          9.50000           74.78
## 4986                  United States 1986         10.40000           74.87
## 4987                        Uruguay 1986         24.30000           72.20
## 4988                     Uzbekistan 1986         65.60000           68.02
## 4989                        Vanuatu 1986         35.70000           60.27
## 4990                      Venezuela 1986         28.60000           71.27
## 4991             West Bank and Gaza 1986         43.30000           69.82
## 4992                        Vietnam 1986         41.00000           68.07
## 4993                          Yemen 1986        101.70000           56.40
## 4994                         Zambia 1986        108.30000           54.85
## 4995                       Zimbabwe 1986         51.70000           64.90
## 4996                        Albania 1987         40.80000           73.14
## 4997                        Algeria 1987         46.30000           68.75
## 4998                         Angola 1987        134.10000           47.99
## 4999            Antigua and Barbuda 1987               NA           72.70
## 5000                      Argentina 1987         27.10000           71.84
## 5001                        Armenia 1987         47.80000           70.82
## 5002                          Aruba 1987               NA           73.33
## 5003                      Australia 1987          8.70000           76.27
## 5004                        Austria 1987          9.40000           74.86
## 5005                     Azerbaijan 1987         77.30000           66.46
## 5006                        Bahamas 1987         22.20000           68.02
## 5007                        Bahrain 1987         20.10000           71.20
## 5008                     Bangladesh 1987        110.80000           56.46
## 5009                       Barbados 1987         18.10000           72.14
## 5010                        Belarus 1987         14.80000           71.55
## 5011                        Belgium 1987          9.20000           75.22
## 5012                         Belize 1987         37.90000           71.60
## 5013                          Benin 1987        114.80000           53.89
## 5014                         Bhutan 1987        104.90000           58.54
## 5015                        Bolivia 1987         94.00000           59.65
## 5016         Bosnia and Herzegovina 1987         20.40000           76.37
## 5017                       Botswana 1987         42.00000           62.85
## 5018                         Brazil 1987         56.80000           66.60
## 5019                         Brunei 1987         10.30000           72.98
## 5020                       Bulgaria 1987         18.20000           71.42
## 5021                   Burkina Faso 1987        105.30000           51.38
## 5022                        Burundi 1987        103.30000           46.88
## 5023                       Cambodia 1987         86.00000           56.82
## 5024                       Cameroon 1987         87.20000           57.75
## 5025                         Canada 1987          7.50000           76.76
## 5026                     Cape Verde 1987         54.00000           67.33
## 5027       Central African Republic 1987        115.50000           49.80
## 5028                           Chad 1987        119.30000           53.09
## 5029                          Chile 1987         18.40000           72.14
## 5030                          China 1987         42.00000           66.23
## 5031                       Colombia 1987         31.50000           70.96
## 5032                        Comoros 1987         95.80000           56.15
## 5033               Congo, Dem. Rep. 1987        122.90000           53.81
## 5034                    Congo, Rep. 1987         60.90000           55.54
## 5035                     Costa Rica 1987         16.30000           75.90
## 5036                  Cote d'Ivoire 1987        105.20000           55.43
## 5037                        Croatia 1987         13.80000           72.00
## 5038                           Cuba 1987         13.30000           74.65
## 5039                         Cyprus 1987         10.70000           76.30
## 5040                 Czech Republic 1987         14.30000           71.87
## 5041                        Denmark 1987          8.00000           74.97
## 5042                       Djibouti 1987         98.90000           60.09
## 5043             Dominican Republic 1987         51.30000           69.96
## 5044                        Ecuador 1987         50.10000           69.46
## 5045                          Egypt 1987         73.50000           63.70
## 5046                    El Salvador 1987         53.30000           63.91
## 5047              Equatorial Guinea 1987        135.30000           47.73
## 5048                        Eritrea 1987        101.60000           50.06
## 5049                        Estonia 1987         18.00000           71.13
## 5050                       Ethiopia 1987        127.60000           43.95
## 5051                           Fiji 1987         27.30000           64.43
## 5052                        Finland 1987          5.90000           74.89
## 5053                         France 1987          8.10000           76.55
## 5054               French Polynesia 1987               NA           67.88
## 5055                          Gabon 1987         62.50000           58.58
## 5056                         Gambia 1987         86.50000           59.65
## 5057                        Georgia 1987         41.90000           69.94
## 5058                        Germany 1987          8.30000           75.15
## 5059                          Ghana 1987         89.00000           56.31
## 5060                         Greece 1987         13.90000           76.01
## 5061                      Greenland 1987               NA           64.22
## 5062                        Grenada 1987         19.20000           69.28
## 5063                      Guatemala 1987         67.70000           62.86
## 5064                         Guinea 1987        150.00000           49.37
## 5065                  Guinea-Bissau 1987        143.10000           50.26
## 5066                         Guyana 1987         49.40000           63.61
## 5067                          Haiti 1987        108.80000           53.21
## 5068                       Honduras 1987         51.20000           68.42
## 5069               Hong Kong, China 1987               NA           76.78
## 5070                        Hungary 1987         19.40000           69.69
## 5071                        Iceland 1987          5.60000           77.53
## 5072                          India 1987         95.60000           57.39
## 5073                      Indonesia 1987         69.30000           62.63
## 5074                           Iran 1987         51.90000           60.83
## 5075                           Iraq 1987         45.10000           62.05
## 5076                        Ireland 1987          8.40000           75.76
## 5077                         Israel 1987         11.00000           75.29
## 5078                          Italy 1987          9.40000           76.36
## 5079                        Jamaica 1987         27.50000           74.85
## 5080                          Japan 1987          5.00000           78.63
## 5081                         Jordan 1987         33.10000           70.52
## 5082                     Kazakhstan 1987         47.10000           68.48
## 5083                          Kenya 1987         62.70000           62.13
## 5084                       Kiribati 1987         77.20000           56.93
## 5085                    South Korea 1987          7.40000           70.18
## 5086                         Kuwait 1987         17.60000           76.29
## 5087                Kyrgyz Republic 1987         58.70000           65.54
## 5088                            Lao 1987        118.40000           49.56
## 5089                         Latvia 1987         15.00000           71.14
## 5090                        Lebanon 1987         30.80000           68.53
## 5091                        Lesotho 1987         73.70000           58.51
## 5092                        Liberia 1987        161.50000           48.59
## 5093                          Libya 1987         41.30000           72.03
## 5094                      Lithuania 1987         13.60000           72.26
## 5095                     Luxembourg 1987          8.50000           73.97
## 5096                   Macao, China 1987               NA           74.58
## 5097                 Macedonia, FYR 1987         42.90000           70.93
## 5098                     Madagascar 1987        106.40000           54.63
## 5099                         Malawi 1987        149.60000           48.17
## 5100                       Malaysia 1987         16.60000           71.01
## 5101                       Maldives 1987         77.70000           63.30
## 5102                           Mali 1987        137.80000           48.18
## 5103                          Malta 1987         11.30000           76.33
## 5104                     Mauritania 1987         82.10000           58.64
## 5105                      Mauritius 1987         24.40000           68.53
## 5106                         Mexico 1987         42.10000           70.26
## 5107          Micronesia, Fed. Sts. 1987         45.00000           64.07
## 5108                        Moldova 1987         29.90000           67.69
## 5109                       Mongolia 1987         87.30000           61.18
## 5110                     Montenegro 1987         18.20000           74.21
## 5111                        Morocco 1987         71.00000           65.66
## 5112                     Mozambique 1987        165.70000           50.45
## 5113                        Namibia 1987         53.80000           61.00
## 5114                          Nepal 1987        111.10000           55.83
## 5115                    Netherlands 1987          7.50000           76.78
## 5116                  New Caledonia 1987               NA           69.72
## 5117                    New Zealand 1987         10.60000           74.36
## 5118                      Nicaragua 1987         56.50000           70.51
## 5119                          Niger 1987        141.40000           45.57
## 5120                        Nigeria 1987        125.40000           53.78
## 5121                         Norway 1987          8.20000           76.07
## 5122                           Oman 1987         41.80000           69.95
## 5123                       Pakistan 1987        111.40000           61.11
## 5124                         Panama 1987         28.10000           74.06
## 5125               Papua New Guinea 1987         68.10000           55.30
## 5126                       Paraguay 1987         40.70000           73.36
## 5127                           Peru 1987         64.60000           66.99
## 5128                    Philippines 1987         46.70000           66.72
## 5129                         Poland 1987         16.60000           71.12
## 5130                       Portugal 1987         14.50000           74.00
## 5131                    Puerto Rico 1987               NA           74.08
## 5132                          Qatar 1987         21.30000           73.94
## 5133                        Romania 1987         32.60000           70.00
## 5134                         Russia 1987         23.50000           69.81
## 5135                         Rwanda 1987         93.10000           49.69
## 5136                      St. Lucia 1987         20.40000           69.93
## 5137 St. Vincent and the Grenadines 1987         23.90000           69.14
## 5138                          Samoa 1987         28.40000           67.27
## 5139                   Saudi Arabia 1987         45.20000           72.28
## 5140                        Senegal 1987         75.50000           56.17
## 5141                         Serbia 1987         31.10000           71.99
## 5142                     Seychelles 1987         15.90000           69.37
## 5143                   Sierra Leone 1987        158.30000           52.72
## 5144                      Singapore 1987          7.90000           73.68
## 5145                Slovak Republic 1987         17.70000           71.24
## 5146                       Slovenia 1987         10.80000           72.10
## 5147                Solomon Islands 1987         34.10000           59.58
## 5148                   South Africa 1987         51.40000           60.83
## 5149                          Spain 1987         10.40000           76.82
## 5150                      Sri Lanka 1987         20.50000           70.05
## 5151                          Sudan 1987         82.80000           58.23
## 5152                       Suriname 1987         43.80000           69.29
## 5153                      Swaziland 1987         59.40000           59.67
## 5154                         Sweden 1987          6.20000           77.12
## 5155                    Switzerland 1987          7.10000           77.47
## 5156                          Syria 1987         34.30000           69.35
## 5157                     Tajikistan 1987         88.60000           65.73
## 5158                       Tanzania 1987        104.20000           55.58
## 5159                       Thailand 1987         35.10000           69.84
## 5160                    Timor-Leste 1987        149.60000           55.26
## 5161                           Togo 1987         94.00000           57.14
## 5162                          Tonga 1987         20.50000           68.67
## 5163            Trinidad and Tobago 1987         28.40000           68.74
## 5164                        Tunisia 1987         49.50000           69.83
## 5165                         Turkey 1987         64.80000           66.37
## 5166                   Turkmenistan 1987         76.90000           63.77
## 5167                         Uganda 1987        114.70000           51.72
## 5168                        Ukraine 1987         17.90000           70.61
## 5169           United Arab Emirates 1987         16.90000           69.68
## 5170                 United Kingdom 1987          9.20000           75.12
## 5171                  United States 1987         10.20000           75.01
## 5172                        Uruguay 1987         23.20000           72.41
## 5173                     Uzbekistan 1987         63.00000           68.09
## 5174                        Vanuatu 1987         33.60000           60.67
## 5175                      Venezuela 1987         27.60000           71.63
## 5176             West Bank and Gaza 1987         41.10000           70.38
## 5177                        Vietnam 1987         40.00000           68.38
## 5178                          Yemen 1987         97.70000           57.04
## 5179                         Zambia 1987        110.60000           54.09
## 5180                       Zimbabwe 1987         50.40000           64.74
## 5181                        Albania 1988         38.60000           73.25
## 5182                        Algeria 1988         43.10000           69.33
## 5183                         Angola 1988        133.80000           48.20
## 5184            Antigua and Barbuda 1988               NA           72.97
## 5185                      Argentina 1988         26.20000           72.05
## 5186                        Armenia 1988         49.90000           70.46
## 5187                          Aruba 1988               NA           73.38
## 5188                      Australia 1988          8.40000           76.30
## 5189                        Austria 1988          8.90000           75.34
## 5190                     Azerbaijan 1988         76.30000           66.28
## 5191                        Bahamas 1988         21.40000           68.20
## 5192                        Bahrain 1988         19.80000           71.41
## 5193                     Bangladesh 1988        107.10000           56.94
## 5194                       Barbados 1988         17.30000           72.43
## 5195                        Belarus 1988         14.20000           71.28
## 5196                        Belgium 1988          8.90000           75.53
## 5197                         Belize 1988         35.90000           71.61
## 5198                          Benin 1988        112.60000           54.67
## 5199                         Bhutan 1988        101.00000           59.48
## 5200                        Bolivia 1988         91.20000           60.33
## 5201         Bosnia and Herzegovina 1988         18.80000           75.39
## 5202                       Botswana 1988         41.40000           62.85
## 5203                         Brazil 1988         54.80000           67.04
## 5204                         Brunei 1988         10.00000           73.26
## 5205                       Bulgaria 1988         17.80000           71.49
## 5206                   Burkina Faso 1988        103.80000           51.42
## 5207                        Burundi 1988        103.00000           46.54
## 5208                       Cambodia 1988         85.60000           56.99
## 5209                       Cameroon 1988         85.80000           58.01
## 5210                         Canada 1988          7.20000           76.82
## 5211                     Cape Verde 1988         51.80000           67.85
## 5212       Central African Republic 1988        115.40000           49.34
## 5213                           Chad 1988        118.10000           53.33
## 5214                          Chile 1988         18.00000           72.47
## 5215                          China 1988         42.20000           66.39
## 5216                       Colombia 1988         30.50000           71.14
## 5217                        Comoros 1988         93.00000           56.50
## 5218               Congo, Dem. Rep. 1988        121.80000           54.07
## 5219                    Congo, Rep. 1988         60.40000           55.21
## 5220                     Costa Rica 1988         15.50000           76.14
## 5221                  Cote d'Ivoire 1988        104.90000           55.50
## 5222                        Croatia 1988         12.90000           72.22
## 5223                           Cuba 1988         12.20000           74.67
## 5224                         Cyprus 1988         10.30000           76.47
## 5225                 Czech Republic 1988         13.70000           72.08
## 5226                        Denmark 1988          7.90000           75.06
## 5227                       Djibouti 1988         96.60000           60.42
## 5228             Dominican Republic 1988         49.60000           70.58
## 5229                        Ecuador 1988         48.10000           70.06
## 5230                          Egypt 1988         69.40000           64.27
## 5231                    El Salvador 1988         50.60000           65.28
## 5232              Equatorial Guinea 1988        132.90000           48.14
## 5233                        Eritrea 1988         99.10000           50.80
## 5234                        Estonia 1988         17.60000           71.17
## 5235                       Ethiopia 1988        125.70000           44.40
## 5236                           Fiji 1988         26.40000           64.66
## 5237                        Finland 1988          5.80000           74.85
## 5238                         France 1988          7.90000           76.78
## 5239               French Polynesia 1988               NA           68.15
## 5240                          Gabon 1988         61.70000           59.00
## 5241                         Gambia 1988         84.30000           60.26
## 5242                        Georgia 1988         41.50000           69.96
## 5243                        Germany 1988          7.80000           75.33
## 5244                          Ghana 1988         85.80000           56.89
## 5245                         Greece 1988         12.90000           76.32
## 5246                      Greenland 1988               NA           64.14
## 5247                        Grenada 1988         18.90000           69.50
## 5248                      Guatemala 1988         65.00000           63.45
## 5249                         Guinea 1988        147.10000           50.33
## 5250                  Guinea-Bissau 1988        140.40000           50.67
## 5251                         Guyana 1988         48.60000           63.80
## 5252                          Haiti 1988        106.10000           53.59
## 5253                       Honduras 1988         49.10000           69.11
## 5254               Hong Kong, China 1988               NA           77.02
## 5255                        Hungary 1988         18.40000           70.09
## 5256                        Iceland 1988          5.50000           77.39
## 5257                          India 1988         93.10000           57.65
## 5258                      Indonesia 1988         67.00000           63.10
## 5259                           Iran 1988         49.30000           62.67
## 5260                           Iraq 1988         44.00000           63.41
## 5261                        Ireland 1988          8.30000           75.82
## 5262                         Israel 1988         10.40000           75.65
## 5263                          Italy 1988          9.10000           76.54
## 5264                        Jamaica 1988         26.80000           74.85
## 5265                          Japan 1988          4.80000           78.54
## 5266                         Jordan 1988         32.00000           70.87
## 5267                     Kazakhstan 1988         46.00000           68.47
## 5268                          Kenya 1988         63.40000           62.10
## 5269                       Kiribati 1988         74.70000           57.33
## 5270                    South Korea 1988          6.90000           70.75
## 5271                         Kuwait 1988         16.80000           76.62
## 5272                Kyrgyz Republic 1988         56.50000           65.77
## 5273                            Lao 1988        116.10000           50.16
## 5274                         Latvia 1988         14.80000           71.05
## 5275                        Lebanon 1988         29.40000           68.78
## 5276                        Lesotho 1988         72.30000           59.21
## 5277                        Liberia 1988        164.60000           48.55
## 5278                          Libya 1988         39.30000           72.48
## 5279                      Lithuania 1988         12.80000           72.10
## 5280                     Luxembourg 1988          8.10000           74.57
## 5281                   Macao, China 1988               NA           74.84
## 5282                 Macedonia, FYR 1988         39.70000           71.23
## 5283                     Madagascar 1988        103.90000           54.98
## 5284                         Malawi 1988        148.60000           48.42
## 5285                       Malaysia 1988         15.70000           71.28
## 5286                       Maldives 1988         74.40000           64.19
## 5287                           Mali 1988        135.20000           48.86
## 5288                          Malta 1988         10.90000           76.59
## 5289                     Mauritania 1988         80.40000           58.96
## 5290                      Mauritius 1988         23.10000           68.74
## 5291                         Mexico 1988         40.50000           70.67
## 5292          Micronesia, Fed. Sts. 1988         44.40000           64.15
## 5293                        Moldova 1988         28.70000           67.98
## 5294                       Mongolia 1988         83.70000           61.61
## 5295                     Montenegro 1988         16.80000           74.35
## 5296                        Morocco 1988         68.20000           66.38
## 5297                     Mozambique 1988        163.80000           50.74
## 5298                        Namibia 1988         52.30000           61.30
## 5299                          Nepal 1988        106.70000           56.68
## 5300                    Netherlands 1988          7.20000           76.98
## 5301                  New Caledonia 1988               NA           70.05
## 5302                    New Zealand 1988         10.20000           74.64
## 5303                      Nicaragua 1988         54.50000           71.40
## 5304                          Niger 1988        140.90000           46.07
## 5305                        Nigeria 1988        125.80000           53.88
## 5306                         Norway 1988          7.90000           76.17
## 5307                           Oman 1988         38.20000           70.70
## 5308                       Pakistan 1988        109.60000           61.45
## 5309                         Panama 1988         27.20000           74.34
## 5310               Papua New Guinea 1988         67.10000           55.47
## 5311                       Paraguay 1988         39.40000           73.62
## 5312                           Peru 1988         61.70000           67.57
## 5313                    Philippines 1988         44.80000           67.05
## 5314                         Poland 1988         16.10000           71.49
## 5315                       Portugal 1988         13.50000           74.02
## 5316                    Puerto Rico 1988               NA           74.04
## 5317                          Qatar 1988         20.10000           74.14
## 5318                        Romania 1988         32.60000           69.98
## 5319                         Russia 1988         22.80000           69.66
## 5320                         Rwanda 1988         91.90000           49.96
## 5321                      St. Lucia 1988         19.70000           70.03
## 5322 St. Vincent and the Grenadines 1988         22.40000           69.34
## 5323                          Samoa 1988         27.50000           67.87
## 5324                   Saudi Arabia 1988         41.80000           72.85
## 5325                        Senegal 1988         73.20000           56.86
## 5326                         Serbia 1988         29.10000           72.17
## 5327                     Seychelles 1988         15.30000           69.31
## 5328                   Sierra Leone 1988        157.60000           52.36
## 5329                      Singapore 1988          7.40000           74.10
## 5330                Slovak Republic 1988         17.00000           71.32
## 5331                       Slovenia 1988         10.10000           72.75
## 5332                Solomon Islands 1988         33.50000           59.52
## 5333                   South Africa 1988         49.80000           61.29
## 5334                          Spain 1988         10.10000           76.82
## 5335                      Sri Lanka 1988         19.20000           70.16
## 5336                          Sudan 1988         81.90000           58.44
## 5337                       Suriname 1988         42.80000           69.43
## 5338                      Swaziland 1988         57.50000           60.13
## 5339                         Sweden 1988          6.20000           77.01
## 5340                    Switzerland 1988          7.00000           77.49
## 5341                          Syria 1988         33.00000           69.75
## 5342                     Tajikistan 1988         86.00000           65.67
## 5343                       Tanzania 1988        102.80000           55.51
## 5344                       Thailand 1988         33.50000           70.38
## 5345                    Timor-Leste 1988        143.50000           56.41
## 5346                           Togo 1988         92.60000           57.42
## 5347                          Tonga 1988         19.90000           68.83
## 5348            Trinidad and Tobago 1988         27.80000           68.87
## 5349                        Tunisia 1988         47.60000           70.48
## 5350                         Turkey 1988         61.60000           66.96
## 5351                   Turkmenistan 1988         75.00000           63.85
## 5352                         Uganda 1988        114.00000           51.42
## 5353                        Ukraine 1988         17.30000           70.49
## 5354           United Arab Emirates 1988         15.90000           70.00
## 5355                 United Kingdom 1988          8.80000           75.23
## 5356                  United States 1988         10.00000           75.02
## 5357                        Uruguay 1988         22.10000           72.61
## 5358                     Uzbekistan 1988         61.00000           68.06
## 5359                        Vanuatu 1988         32.00000           61.07
## 5360                      Venezuela 1988         26.60000           71.95
## 5361             West Bank and Gaza 1988         39.10000           70.88
## 5362                        Vietnam 1988         38.90000           68.68
## 5363                          Yemen 1988         94.30000           57.60
## 5364                         Zambia 1988        112.20000           53.33
## 5365                       Zimbabwe 1988         49.80000           64.39
## 5366                        Albania 1989         36.70000           73.30
## 5367                        Algeria 1989         41.00000           69.81
## 5368                         Angola 1989        133.60000           48.40
## 5369            Antigua and Barbuda 1989               NA           73.24
## 5370                      Argentina 1989         25.30000           72.26
## 5371                        Armenia 1989         44.30000           70.22
## 5372                          Aruba 1989               NA           73.43
## 5373                      Australia 1989          8.00000           76.40
## 5374                        Austria 1989          8.40000           75.43
## 5375                     Azerbaijan 1989         75.70000           65.98
## 5376                        Bahamas 1989         20.60000           68.35
## 5377                        Bahrain 1989         19.70000           71.61
## 5378                     Bangladesh 1989        103.40000           57.42
## 5379                       Barbados 1989         16.70000           72.72
## 5380                        Belarus 1989         13.80000           71.05
## 5381                        Belgium 1989          8.60000           75.59
## 5382                         Belize 1989         34.00000           71.54
## 5383                          Benin 1989        110.40000           55.42
## 5384                         Bhutan 1989         97.10000           60.44
## 5385                        Bolivia 1989         88.40000           60.98
## 5386         Bosnia and Herzegovina 1989         17.40000           74.07
## 5387                       Botswana 1989         41.30000           62.69
## 5388                         Brazil 1989         52.80000           67.47
## 5389                         Brunei 1989          9.70000           73.54
## 5390                       Bulgaria 1989         17.90000           71.55
## 5391                   Burkina Faso 1989        102.90000           51.42
## 5392                        Burundi 1989        103.30000           46.10
## 5393                       Cambodia 1989         85.50000           57.22
## 5394                       Cameroon 1989         85.20000           58.22
## 5395                         Canada 1989          7.10000           77.09
## 5396                     Cape Verde 1989         49.70000           68.30
## 5397       Central African Republic 1989        115.40000           48.86
## 5398                           Chad 1989        117.00000           53.52
## 5399                          Chile 1989         17.10000           72.79
## 5400                          China 1989         42.20000           66.56
## 5401                       Colombia 1989         29.70000           71.32
## 5402                        Comoros 1989         90.40000           56.81
## 5403               Congo, Dem. Rep. 1989        120.80000           54.31
## 5404                    Congo, Rep. 1989         60.40000           54.78
## 5405                     Costa Rica 1989         14.80000           76.37
## 5406                  Cote d'Ivoire 1989        104.90000           55.46
## 5407                        Croatia 1989         11.90000           72.40
## 5408                           Cuba 1989         11.40000           74.67
## 5409                         Cyprus 1989         10.00000           76.64
## 5410                 Czech Republic 1989         13.30000           72.13
## 5411                        Denmark 1989          7.70000           75.10
## 5412                       Djibouti 1989         94.50000           60.72
## 5413             Dominican Republic 1989         48.10000           71.20
## 5414                        Ecuador 1989         46.10000           70.64
## 5415                          Egypt 1989         66.00000           64.76
## 5416                    El Salvador 1989         48.20000           66.55
## 5417              Equatorial Guinea 1989        130.40000           48.52
## 5418                        Eritrea 1989         96.20000           51.58
## 5419                        Estonia 1989         17.10000           70.73
## 5420                       Ethiopia 1989        123.70000           44.82
## 5421                           Fiji 1989         25.60000           64.88
## 5422                        Finland 1989          5.70000           75.07
## 5423                         France 1989          7.70000           76.91
## 5424               French Polynesia 1989               NA           68.42
## 5425                          Gabon 1989         61.10000           59.32
## 5426                         Gambia 1989         82.10000           60.81
## 5427                        Georgia 1989         41.10000           69.95
## 5428                        Germany 1989          7.40000           75.51
## 5429                          Ghana 1989         82.70000           57.47
## 5430                         Greece 1989         12.00000           76.66
## 5431                      Greenland 1989               NA           64.22
## 5432                        Grenada 1989         18.50000           69.70
## 5433                      Guatemala 1989         62.40000           64.02
## 5434                         Guinea 1989        144.00000           51.22
## 5435                  Guinea-Bissau 1989        137.90000           51.09
## 5436                         Guyana 1989         47.60000           64.01
## 5437                          Haiti 1989        103.50000           53.95
## 5438                       Honduras 1989         47.10000           69.73
## 5439               Hong Kong, China 1989               NA           77.27
## 5440                        Hungary 1989         17.60000           69.53
## 5441                        Iceland 1989          5.20000           78.46
## 5442                          India 1989         90.70000           57.93
## 5443                      Indonesia 1989         64.60000           63.55
## 5444                           Iran 1989         46.90000           64.43
## 5445                           Iraq 1989         43.10000           64.65
## 5446                        Ireland 1989          8.00000           75.87
## 5447                         Israel 1989         10.10000           76.24
## 5448                          Italy 1989          8.70000           76.94
## 5449                        Jamaica 1989         26.10000           74.83
## 5450                          Japan 1989          4.70000           78.97
## 5451                         Jordan 1989         30.90000           71.20
## 5452                     Kazakhstan 1989         45.20000           68.31
## 5453                          Kenya 1989         64.50000           62.00
## 5454                       Kiribati 1989         72.00000           57.68
## 5455                    South Korea 1989          6.50000           71.29
## 5456                         Kuwait 1989         16.10000           76.92
## 5457                Kyrgyz Republic 1989         54.90000           65.93
## 5458                            Lao 1989        113.60000           50.80
## 5459                         Latvia 1989         15.40000           70.55
## 5460                        Lebanon 1989         28.20000           69.03
## 5461                        Lesotho 1989         71.40000           59.92
## 5462                        Liberia 1989        167.70000           48.53
## 5463                          Libya 1989         37.30000           72.94
## 5464                      Lithuania 1989         12.50000           71.79
## 5465                     Luxembourg 1989          7.70000           74.49
## 5466                   Macao, China 1989               NA           75.10
## 5467                 Macedonia, FYR 1989         35.90000           71.48
## 5468                     Madagascar 1989        101.00000           55.43
## 5469                         Malawi 1989        146.20000           48.64
## 5470                       Malaysia 1989         15.00000           71.54
## 5471                       Maldives 1989         71.20000           65.08
## 5472                           Mali 1989        132.80000           49.47
## 5473                          Malta 1989         10.40000           76.84
## 5474                     Mauritania 1989         79.00000           59.25
## 5475                      Mauritius 1989         21.30000           68.99
## 5476                         Mexico 1989         38.80000           71.09
## 5477          Micronesia, Fed. Sts. 1989         43.90000           64.23
## 5478                        Moldova 1989         27.80000           68.16
## 5479                       Mongolia 1989         80.30000           61.98
## 5480                     Montenegro 1989         15.70000           74.47
## 5481                        Morocco 1989         65.60000           67.06
## 5482                     Mozambique 1989        161.80000           51.08
## 5483                        Namibia 1989         50.80000           61.54
## 5484                          Nepal 1989        102.30000           57.53
## 5485                    Netherlands 1989          7.00000           76.82
## 5486                  New Caledonia 1989               NA           70.38
## 5487                    New Zealand 1989          9.70000           75.05
## 5488                      Nicaragua 1989         52.70000           72.35
## 5489                          Niger 1989        139.80000           46.62
## 5490                        Nigeria 1989        126.00000           53.98
## 5491                         Norway 1989          7.50000           76.52
## 5492                           Oman 1989         35.00000           71.41
## 5493                       Pakistan 1989        107.80000           61.78
## 5494                         Panama 1989         26.40000           74.62
## 5495               Papua New Guinea 1989         66.20000           55.70
## 5496                       Paraguay 1989         38.30000           73.91
## 5497                           Peru 1989         58.90000           68.14
## 5498                    Philippines 1989         42.80000           67.34
## 5499                         Poland 1989         15.70000           71.25
## 5500                       Portugal 1989         12.50000           74.58
## 5501                    Puerto Rico 1989               NA           73.93
## 5502                          Qatar 1989         18.90000           74.32
## 5503                        Romania 1989         32.00000           69.99
## 5504                         Russia 1989         22.20000           69.57
## 5505                         Rwanda 1989         91.80000           50.23
## 5506                      St. Lucia 1989         19.10000           70.12
## 5507 St. Vincent and the Grenadines 1989         21.20000           69.53
## 5508                          Samoa 1989         26.60000           68.49
## 5509                   Saudi Arabia 1989         38.50000           73.39
## 5510                        Senegal 1989         71.50000           57.41
## 5511                         Serbia 1989         26.80000           72.35
## 5512                     Seychelles 1989         14.70000           69.22
## 5513                   Sierra Leone 1989        157.00000           51.98
## 5514                      Singapore 1989          6.70000           74.51
## 5515                Slovak Republic 1989         16.20000           71.12
## 5516                       Slovenia 1989          9.40000           73.19
## 5517                Solomon Islands 1989         32.80000           59.70
## 5518                   South Africa 1989         48.50000           61.69
## 5519                          Spain 1989          9.70000           76.89
## 5520                      Sri Lanka 1989         18.40000           70.32
## 5521                          Sudan 1989         80.90000           58.67
## 5522                       Suriname 1989         41.80000           69.57
## 5523                      Swaziland 1989         56.30000           60.50
## 5524                         Sweden 1989          6.10000           77.67
## 5525                    Switzerland 1989          6.80000           77.68
## 5526                          Syria 1989         31.60000           70.14
## 5527                     Tajikistan 1989         84.80000           65.50
## 5528                       Tanzania 1989        101.50000           55.39
## 5529                       Thailand 1989         31.90000           70.76
## 5530                    Timor-Leste 1989        137.60000           57.47
## 5531                           Togo 1989         91.40000           57.65
## 5532                          Tonga 1989         19.30000           68.98
## 5533            Trinidad and Tobago 1989         27.30000           68.98
## 5534                        Tunisia 1989         45.90000           71.13
## 5535                         Turkey 1989         58.60000           67.53
## 5536                   Turkmenistan 1989         73.50000           63.89
## 5537                         Uganda 1989        113.00000           51.08
## 5538                        Ukraine 1989         16.90000           70.43
## 5539           United Arab Emirates 1989         15.00000           70.31
## 5540                 United Kingdom 1989          8.40000           75.36
## 5541                  United States 1989          9.70000           75.10
## 5542                        Uruguay 1989         21.10000           72.81
## 5543                     Uzbekistan 1989         59.50000           67.96
## 5544                        Vanuatu 1989         30.50000           61.48
## 5545                      Venezuela 1989         25.60000           72.24
## 5546             West Bank and Gaza 1989         37.20000           71.36
## 5547                        Vietnam 1989         37.70000           69.00
## 5548                          Yemen 1989         91.20000           58.08
## 5549                         Zambia 1989        113.10000           52.59
## 5550                       Zimbabwe 1989         50.20000           63.81
## 5551                        Albania 1990         35.10000           73.30
## 5552                        Algeria 1990         39.70000           70.20
## 5553                         Angola 1990        133.50000           48.60
## 5554            Antigua and Barbuda 1990         24.00000           73.50
## 5555                      Argentina 1990         24.40000           72.50
## 5556                        Armenia 1990         42.50000           70.10
## 5557                          Aruba 1990               NA           73.47
## 5558                      Australia 1990          7.60000           77.00
## 5559                        Austria 1990          8.00000           75.70
## 5560                     Azerbaijan 1990         75.50000           65.60
## 5561                        Bahamas 1990         19.70000           68.50
## 5562                        Bahrain 1990         19.50000           71.80
## 5563                     Bangladesh 1990         99.70000           57.90
## 5564                       Barbados 1990         16.00000           73.00
## 5565                        Belarus 1990         13.50000           70.50
## 5566                        Belgium 1990          8.30000           76.00
## 5567                         Belize 1990         32.20000           71.40
## 5568                          Benin 1990        108.00000           56.10
## 5569                         Bhutan 1990         93.30000           61.40
## 5570                        Bolivia 1990         85.60000           61.60
## 5571         Bosnia and Herzegovina 1990         16.20000           72.70
## 5572                       Botswana 1990         41.80000           62.30
## 5573                         Brazil 1990         50.90000           67.90
## 5574                         Brunei 1990          9.40000           73.80
## 5575                       Bulgaria 1990         18.40000           71.40
## 5576                   Burkina Faso 1990        102.50000           51.40
## 5577                        Burundi 1990        103.90000           45.60
## 5578                       Cambodia 1990         85.40000           57.60
## 5579                       Cameroon 1990         85.60000           58.40
## 5580                         Canada 1990          6.80000           77.40
## 5581                     Cape Verde 1990         48.20000           68.70
## 5582       Central African Republic 1990        115.30000           48.40
## 5583                           Chad 1990        115.80000           53.70
## 5584                          Chile 1990         16.00000           73.10
## 5585                          China 1990         42.10000           66.70
## 5586                       Colombia 1990         28.90000           71.50
## 5587                        Comoros 1990         87.90000           57.10
## 5588               Congo, Dem. Rep. 1990        119.80000           54.50
## 5589                    Congo, Rep. 1990         60.90000           54.30
## 5590                     Costa Rica 1990         14.30000           76.60
## 5591                  Cote d'Ivoire 1990        104.90000           55.30
## 5592                        Croatia 1990         11.20000           72.60
## 5593                           Cuba 1990         10.60000           74.70
## 5594                         Cyprus 1990          9.90000           76.80
## 5595                 Czech Republic 1990         12.70000           71.80
## 5596                        Denmark 1990          7.30000           75.10
## 5597                       Djibouti 1990         92.70000           61.00
## 5598             Dominican Republic 1990         46.50000           71.80
## 5599                        Ecuador 1990         44.20000           71.20
## 5600                          Egypt 1990         63.00000           65.20
## 5601                    El Salvador 1990         45.90000           67.70
## 5602              Equatorial Guinea 1990        127.90000           48.90
## 5603                        Eritrea 1990         93.00000           52.40
## 5604                        Estonia 1990         16.50000           70.10
## 5605                       Ethiopia 1990        121.60000           45.20
## 5606                           Fiji 1990         24.80000           65.10
## 5607                        Finland 1990          5.50000           75.10
## 5608                         France 1990          7.40000           77.20
## 5609               French Polynesia 1990               NA           68.70
## 5610                          Gabon 1990         60.50000           59.50
## 5611                         Gambia 1990         80.00000           61.30
## 5612                        Georgia 1990         40.80000           69.90
## 5613                        Germany 1990          7.00000           75.40
## 5614                          Ghana 1990         79.80000           58.00
## 5615                         Greece 1990         11.30000           77.00
## 5616                      Greenland 1990               NA           64.60
## 5617                        Grenada 1990         18.00000           69.90
## 5618                      Guatemala 1990         59.80000           64.60
## 5619                         Guinea 1990        140.80000           52.00
## 5620                  Guinea-Bissau 1990        135.50000           51.50
## 5621                         Guyana 1990         46.60000           64.20
## 5622                          Haiti 1990        101.00000           54.30
## 5623                       Honduras 1990         45.10000           70.30
## 5624               Hong Kong, China 1990               NA           77.52
## 5625                        Hungary 1990         16.90000           69.50
## 5626                        Iceland 1990          5.10000           78.30
## 5627                          India 1990         88.30000           58.20
## 5628                      Indonesia 1990         62.20000           64.00
## 5629                           Iran 1990         44.60000           66.00
## 5630                           Iraq 1990         42.30000           65.70
## 5631                        Ireland 1990          7.70000           76.30
## 5632                         Israel 1990          9.70000           76.70
## 5633                          Italy 1990          8.30000           77.00
## 5634                        Jamaica 1990         25.40000           74.80
## 5635                          Japan 1990          4.60000           79.00
## 5636                         Jordan 1990         30.00000           71.50
## 5637                     Kazakhstan 1990         44.70000           68.00
## 5638                          Kenya 1990         65.80000           61.80
## 5639                       Kiribati 1990         69.40000           58.00
## 5640                    South Korea 1990          6.10000           71.80
## 5641                         Kuwait 1990         15.30000           77.20
## 5642                Kyrgyz Republic 1990         54.10000           66.00
## 5643                            Lao 1990        111.10000           51.50
## 5644                         Latvia 1990         16.60000           69.60
## 5645                        Lebanon 1990         26.90000           69.30
## 5646                        Lesotho 1990         70.80000           60.50
## 5647                        Liberia 1990        170.10000           48.60
## 5648                          Libya 1990         35.50000           73.40
## 5649                      Lithuania 1990         13.40000           71.50
## 5650                     Luxembourg 1990          7.30000           75.20
## 5651                   Macao, China 1990               NA           75.36
## 5652                 Macedonia, FYR 1990         33.00000           71.70
## 5653                     Madagascar 1990         98.10000           56.00
## 5654                         Malawi 1990        142.50000           48.80
## 5655                       Malaysia 1990         14.30000           71.80
## 5656                       Maldives 1990         68.20000           66.00
## 5657                           Mali 1990        130.60000           50.00
## 5658                          Malta 1990         10.00000           77.10
## 5659                     Mauritania 1990         77.90000           59.50
## 5660                      Mauritius 1990         19.90000           69.30
## 5661                         Mexico 1990         37.10000           71.50
## 5662          Micronesia, Fed. Sts. 1990         43.40000           64.30
## 5663                        Moldova 1990         27.30000           68.20
## 5664                       Mongolia 1990         76.90000           62.30
## 5665                     Montenegro 1990         14.90000           74.60
## 5666                        Morocco 1990         63.10000           67.70
## 5667                     Mozambique 1990        159.70000           51.50
## 5668                        Namibia 1990         49.60000           61.70
## 5669                          Nepal 1990         97.70000           58.40
## 5670                    Netherlands 1990          6.80000           77.00
## 5671                  New Caledonia 1990               NA           70.70
## 5672                    New Zealand 1990          9.20000           75.60
## 5673                      Nicaragua 1990         50.90000           73.30
## 5674                          Niger 1990        138.10000           47.20
## 5675                        Nigeria 1990        125.90000           54.10
## 5676                         Norway 1990          7.00000           76.60
## 5677                           Oman 1990         32.00000           72.10
## 5678                       Pakistan 1990        106.10000           62.10
## 5679                         Panama 1990         25.70000           74.90
## 5680               Papua New Guinea 1990         65.30000           56.00
## 5681                       Paraguay 1990         37.10000           74.20
## 5682                           Peru 1990         56.30000           68.70
## 5683                    Philippines 1990         40.80000           67.60
## 5684                         Poland 1990         15.10000           70.90
## 5685                       Portugal 1990         11.50000           74.20
## 5686                    Puerto Rico 1990               NA           73.80
## 5687                          Qatar 1990         17.80000           74.50
## 5688                        Romania 1990         31.00000           70.00
## 5689                         Russia 1990         21.90000           69.20
## 5690                         Rwanda 1990         93.20000           50.50
## 5691                      St. Lucia 1990         18.70000           70.20
## 5692 St. Vincent and the Grenadines 1990         20.30000           69.70
## 5693                          Samoa 1990         25.80000           69.10
## 5694                   Saudi Arabia 1990         35.50000           73.90
## 5695                        Senegal 1990         70.30000           57.80
## 5696                         Serbia 1990         24.50000           72.50
## 5697                     Seychelles 1990         14.20000           69.10
## 5698                   Sierra Leone 1990        156.50000           51.60
## 5699                      Singapore 1990          6.20000           74.90
## 5700                Slovak Republic 1990         15.60000           71.00
## 5701                       Slovenia 1990          8.80000           73.70
## 5702                Solomon Islands 1990         32.20000           60.10
## 5703                   South Africa 1990         47.40000           62.00
## 5704                          Spain 1990          9.30000           76.90
## 5705                      Sri Lanka 1990         18.10000           70.50
## 5706                          Sudan 1990         79.90000           58.90
## 5707                       Suriname 1990         40.70000           69.70
## 5708                      Swaziland 1990         56.00000           60.70
## 5709                         Sweden 1990          5.80000           77.60
## 5710                    Switzerland 1990          6.70000           77.50
## 5711                          Syria 1990         30.40000           70.50
## 5712                     Tajikistan 1990         85.00000           65.30
## 5713                       Tanzania 1990        100.40000           55.20
## 5714                       Thailand 1990         30.30000           71.00
## 5715                    Timor-Leste 1990        132.00000           58.50
## 5716                           Togo 1990         90.20000           57.80
## 5717                          Tonga 1990         18.70000           69.10
## 5718            Trinidad and Tobago 1990         26.90000           69.10
## 5719                        Tunisia 1990         44.30000           71.80
## 5720                         Turkey 1990         55.80000           68.10
## 5721                   Turkmenistan 1990         72.50000           63.90
## 5722                         Uganda 1990        111.40000           50.70
## 5723                        Ukraine 1990         16.70000           70.00
## 5724           United Arab Emirates 1990         14.10000           70.60
## 5725                 United Kingdom 1990          7.90000           75.70
## 5726                  United States 1990          9.40000           75.40
## 5727                        Uruguay 1990         20.30000           73.00
## 5728                     Uzbekistan 1990         58.80000           67.80
## 5729                        Vanuatu 1990         29.20000           61.90
## 5730                      Venezuela 1990         24.70000           72.50
## 5731             West Bank and Gaza 1990         35.60000           71.80
## 5732                        Vietnam 1990         36.60000           69.30
## 5733                          Yemen 1990         88.70000           58.50
## 5734                         Zambia 1990        113.30000           51.90
## 5735                       Zimbabwe 1990         51.20000           63.00
## 5736                        Albania 1991         33.70000           73.40
## 5737                        Algeria 1991         38.80000           70.50
## 5738                         Angola 1991        133.50000           49.30
## 5739            Antigua and Barbuda 1991         22.60000           73.60
## 5740                      Argentina 1991         23.60000           72.70
## 5741                        Armenia 1991         40.60000           69.70
## 5742                          Aruba 1991               NA           73.51
## 5743                      Australia 1991          7.10000           77.40
## 5744                        Austria 1991          7.60000           75.80
## 5745                     Azerbaijan 1991         75.70000           65.30
## 5746                        Bahamas 1991         18.80000           68.90
## 5747                        Bahrain 1991         19.30000           72.00
## 5748                     Bangladesh 1991         95.80000           56.40
## 5749                       Barbados 1991         15.40000           73.20
## 5750                        Belarus 1991         13.50000           70.10
## 5751                        Belgium 1991          8.00000           76.20
## 5752                         Belize 1991         30.40000           71.20
## 5753                          Benin 1991        105.60000           56.30
## 5754                         Bhutan 1991         89.60000           61.90
## 5755                        Bolivia 1991         82.90000           62.20
## 5756         Bosnia and Herzegovina 1991         15.10000           72.70
## 5757                       Botswana 1991         42.90000           62.00
## 5758                         Brazil 1991         48.90000           68.10
## 5759                         Brunei 1991          9.20000           73.80
## 5760                       Bulgaria 1991         18.80000           71.30
## 5761                   Burkina Faso 1991        102.30000           51.40
## 5762                        Burundi 1991        104.50000           45.40
## 5763                       Cambodia 1991         85.50000           57.90
## 5764                       Cameroon 1991         86.70000           58.20
## 5765                         Canada 1991          6.60000           77.60
## 5766                     Cape Verde 1991         47.00000           68.60
## 5767       Central African Republic 1991        115.20000           48.10
## 5768                           Chad 1991        114.70000           54.30
## 5769                          Chile 1991         14.80000           74.10
## 5770                          China 1991         41.80000           67.00
## 5771                       Colombia 1991         28.20000           71.10
## 5772                        Comoros 1991         85.40000           57.40
## 5773               Congo, Dem. Rep. 1991        118.70000           54.40
## 5774                    Congo, Rep. 1991         61.80000           54.40
## 5775                     Costa Rica 1991         14.00000           76.50
## 5776                  Cote d'Ivoire 1991        104.80000           54.90
## 5777                        Croatia 1991         10.50000           71.90
## 5778                           Cuba 1991          9.80000           74.80
## 5779                         Cyprus 1991          9.70000           76.40
## 5780                 Czech Republic 1991         12.20000           72.00
## 5781                        Denmark 1991          6.90000           75.40
## 5782                       Djibouti 1991         91.00000           60.70
## 5783             Dominican Republic 1991         44.90000           72.20
## 5784                        Ecuador 1991         42.30000           71.40
## 5785                          Egypt 1991         60.30000           65.40
## 5786                    El Salvador 1991         43.80000           68.10
## 5787              Equatorial Guinea 1991        125.50000           48.70
## 5788                        Eritrea 1991         89.50000           53.40
## 5789                        Estonia 1991         15.90000           69.60
## 5790                       Ethiopia 1991        119.20000           46.90
## 5791                           Fiji 1991         24.10000           65.10
## 5792                        Finland 1991          5.30000           75.40
## 5793                         France 1991          7.10000           77.30
## 5794               French Polynesia 1991               NA           69.01
## 5795                          Gabon 1991         60.00000           59.80
## 5796                         Gambia 1991         78.00000           61.50
## 5797                        Georgia 1991         40.40000           69.90
## 5798                        Germany 1991          6.50000           75.60
## 5799                          Ghana 1991         77.50000           58.40
## 5800                         Greece 1991         10.70000           77.10
## 5801                      Greenland 1991               NA           65.10
## 5802                        Grenada 1991         17.40000           70.20
## 5803                      Guatemala 1991         57.30000           64.00
## 5804                         Guinea 1991        137.30000           52.30
## 5805                  Guinea-Bissau 1991        132.90000           51.70
## 5806                         Guyana 1991         45.50000           64.30
## 5807                          Haiti 1991         98.40000           54.40
## 5808                       Honduras 1991         43.30000           70.30
## 5809               Hong Kong, China 1991               NA           77.77
## 5810                        Hungary 1991         16.20000           69.20
## 5811                        Iceland 1991          4.90000           78.40
## 5812                          India 1991         86.10000           58.50
## 5813                      Indonesia 1991         59.80000           64.50
## 5814                           Iran 1991         42.60000           67.80
## 5815                           Iraq 1991         41.60000           63.90
## 5816                        Ireland 1991          7.20000           76.70
## 5817                         Israel 1991          9.20000           76.50
## 5818                          Italy 1991          8.00000           77.00
## 5819                        Jamaica 1991         24.70000           74.90
## 5820                          Japan 1991          4.50000           79.10
## 5821                         Jordan 1991         29.10000           71.90
## 5822                     Kazakhstan 1991         44.50000           67.60
## 5823                          Kenya 1991         67.40000           61.10
## 5824                       Kiribati 1991         67.00000           58.20
## 5825                    South Korea 1991          5.80000           72.20
## 5826                         Kuwait 1991         15.30000           64.40
## 5827                Kyrgyz Republic 1991         53.80000           65.90
## 5828                            Lao 1991        108.60000           52.00
## 5829                         Latvia 1991         18.00000           69.10
## 5830                        Lebanon 1991         25.80000           71.90
## 5831                        Lesotho 1991         70.60000           60.60
## 5832                        Liberia 1991        171.20000           51.50
## 5833                          Libya 1991         33.80000           73.70
## 5834                      Lithuania 1991         14.90000           70.50
## 5835                     Luxembourg 1991          6.80000           75.50
## 5836                   Macao, China 1991               NA           75.61
## 5837                 Macedonia, FYR 1991         31.50000           71.70
## 5838                     Madagascar 1991         95.40000           56.20
## 5839                         Malawi 1991        137.90000           48.60
## 5840                       Malaysia 1991         13.60000           72.00
## 5841                       Maldives 1991         65.30000           66.70
## 5842                           Mali 1991        128.70000           50.50
## 5843                          Malta 1991          9.70000           77.30
## 5844                     Mauritania 1991         77.20000           60.20
## 5845                      Mauritius 1991         18.80000           69.60
## 5846                         Mexico 1991         35.40000           71.90
## 5847          Micronesia, Fed. Sts. 1991         43.10000           64.50
## 5848                        Moldova 1991         27.50000           67.40
## 5849                       Mongolia 1991         73.80000           62.30
## 5850                     Montenegro 1991         14.30000           74.40
## 5851                        Morocco 1991         60.80000           68.10
## 5852                     Mozambique 1991        157.40000           51.70
## 5853                        Namibia 1991         48.50000           61.90
## 5854                          Nepal 1991         93.20000           59.10
## 5855                    Netherlands 1991          6.50000           77.20
## 5856                  New Caledonia 1991               NA           71.01
## 5857                    New Zealand 1991          8.70000           75.90
## 5858                      Nicaragua 1991         49.00000           73.70
## 5859                          Niger 1991        135.60000           47.90
## 5860                        Nigeria 1991        125.80000           54.30
## 5861                         Norway 1991          6.40000           77.00
## 5862                           Oman 1991         29.30000           72.50
## 5863                       Pakistan 1991        104.30000           62.20
## 5864                         Panama 1991         25.10000           75.00
## 5865               Papua New Guinea 1991         64.40000           56.00
## 5866                       Paraguay 1991         35.90000           74.20
## 5867                           Peru 1991         53.70000           69.20
## 5868                    Philippines 1991         39.00000           67.90
## 5869                         Poland 1991         14.70000           70.70
## 5870                       Portugal 1991         10.60000           74.20
## 5871                    Puerto Rico 1991               NA           73.80
## 5872                          Qatar 1991         16.70000           74.40
## 5873                        Romania 1991         30.10000           70.50
## 5874                         Russia 1991         21.90000           69.10
## 5875                         Rwanda 1991         96.30000           49.30
## 5876                      St. Lucia 1991         18.30000           70.40
## 5877 St. Vincent and the Grenadines 1991         19.60000           69.70
## 5878                          Samoa 1991         25.00000           69.10
## 5879                   Saudi Arabia 1991         32.80000           74.30
## 5880                        Senegal 1991         69.70000           58.00
## 5881                         Serbia 1991         22.30000           71.40
## 5882                     Seychelles 1991         13.70000           69.10
## 5883                   Sierra Leone 1991        156.10000           51.40
## 5884                      Singapore 1991          5.50000           75.60
## 5885                Slovak Republic 1991         15.00000           71.10
## 5886                       Slovenia 1991          8.20000           73.60
## 5887                Solomon Islands 1991         31.60000           60.00
## 5888                   South Africa 1991         46.70000           62.50
## 5889                          Spain 1991          8.80000           77.00
## 5890                      Sri Lanka 1991         18.10000           71.30
## 5891                          Sudan 1991         78.90000           59.20
## 5892                       Suriname 1991         39.70000           69.90
## 5893                      Swaziland 1991         56.70000           60.70
## 5894                         Sweden 1991          5.50000           77.70
## 5895                    Switzerland 1991          6.40000           77.60
## 5896                          Syria 1991         29.20000           71.00
## 5897                     Tajikistan 1991         86.90000           65.30
## 5898                       Tanzania 1991         99.60000           55.10
## 5899                       Thailand 1991         28.80000           71.00
## 5900                    Timor-Leste 1991        126.80000           59.20
## 5901                           Togo 1991         89.00000           57.80
## 5902                          Tonga 1991         18.00000           69.30
## 5903            Trinidad and Tobago 1991         26.50000           69.30
## 5904                        Tunisia 1991         42.80000           72.00
## 5905                         Turkey 1991         53.10000           68.50
## 5906                   Turkmenistan 1991         72.00000           63.50
## 5907                         Uganda 1991        109.30000           50.00
## 5908                        Ukraine 1991         16.70000           69.40
## 5909           United Arab Emirates 1991         13.40000           70.80
## 5910                 United Kingdom 1991          7.40000           76.00
## 5911                  United States 1991          9.10000           75.50
## 5912                        Uruguay 1991         19.60000           72.60
## 5913                     Uzbekistan 1991         58.50000           67.60
## 5914                        Vanuatu 1991         28.10000           62.00
## 5915                      Venezuela 1991         23.90000           72.40
## 5916             West Bank and Gaza 1991         34.10000           72.00
## 5917                        Vietnam 1991         35.40000           69.60
## 5918                          Yemen 1991         86.40000           58.90
## 5919                         Zambia 1991        113.00000           50.70
## 5920                       Zimbabwe 1991         52.60000           62.70
## 5921                        Albania 1992         32.50000           73.60
## 5922                        Algeria 1992         38.10000           70.90
## 5923                         Angola 1992        133.50000           49.60
## 5924            Antigua and Barbuda 1992         21.50000           73.50
## 5925                      Argentina 1992         22.80000           72.80
## 5926                        Armenia 1992         38.80000           68.80
## 5927                          Aruba 1992               NA           73.54
## 5928                      Australia 1992          6.70000           77.60
## 5929                        Austria 1992          7.10000           76.00
## 5930                     Azerbaijan 1992         76.00000           63.70
## 5931                        Bahamas 1992         18.00000           69.20
## 5932                        Bahrain 1992         18.70000           72.10
## 5933                     Bangladesh 1992         92.10000           59.70
## 5934                       Barbados 1992         14.90000           73.20
## 5935                        Belarus 1992         13.60000           69.60
## 5936                        Belgium 1992          7.60000           76.30
## 5937                         Belize 1992         28.80000           71.10
## 5938                          Benin 1992        103.20000           56.60
## 5939                         Bhutan 1992         85.90000           62.40
## 5940                        Bolivia 1992         80.20000           62.70
## 5941         Bosnia and Herzegovina 1992         14.70000           68.00
## 5942                       Botswana 1992         44.20000           61.20
## 5943                         Brazil 1992         46.80000           68.30
## 5944                         Brunei 1992          9.00000           74.00
## 5945                       Bulgaria 1992         19.10000           71.20
## 5946                   Burkina Faso 1992        102.40000           51.30
## 5947                        Burundi 1992        104.80000           45.30
## 5948                       Cambodia 1992         85.70000           58.20
## 5949                       Cameroon 1992         88.20000           57.90
## 5950                         Canada 1992          6.40000           77.70
## 5951                     Cape Verde 1992         46.30000           68.60
## 5952       Central African Republic 1992        115.10000           48.00
## 5953                           Chad 1992        113.70000           53.90
## 5954                          Chile 1992         13.70000           75.00
## 5955                          China 1992         41.20000           67.20
## 5956                       Colombia 1992         27.40000           71.10
## 5957                        Comoros 1992         82.90000           57.80
## 5958               Congo, Dem. Rep. 1992        117.70000           54.30
## 5959                    Congo, Rep. 1992         63.00000           54.40
## 5960                     Costa Rica 1992         13.70000           76.60
## 5961                  Cote d'Ivoire 1992        104.70000           54.40
## 5962                        Croatia 1992          9.90000           72.30
## 5963                           Cuba 1992          9.30000           74.70
## 5964                         Cyprus 1992          9.30000           76.70
## 5965                 Czech Republic 1992         11.50000           72.30
## 5966                        Denmark 1992          6.50000           75.40
## 5967                       Djibouti 1992         89.60000           60.40
## 5968             Dominican Republic 1992         43.30000           72.50
## 5969                        Ecuador 1992         40.50000           71.70
## 5970                          Egypt 1992         57.60000           66.10
## 5971                    El Salvador 1992         41.70000           68.90
## 5972              Equatorial Guinea 1992        123.10000           48.70
## 5973                        Eritrea 1992         85.80000           54.90
## 5974                        Estonia 1992         15.20000           69.30
## 5975                       Ethiopia 1992        116.40000           47.80
## 5976                           Fiji 1992         23.50000           65.00
## 5977                        Finland 1992          5.00000           75.70
## 5978                         France 1992          6.70000           77.60
## 5979               French Polynesia 1992               NA           69.33
## 5980                          Gabon 1992         59.60000           60.20
## 5981                         Gambia 1992         76.10000           61.50
## 5982                        Georgia 1992         40.00000           69.40
## 5983                        Germany 1992          6.20000           76.00
## 5984                          Ghana 1992         75.60000           58.70
## 5985                         Greece 1992         10.30000           77.10
## 5986                      Greenland 1992               NA           65.50
## 5987                        Grenada 1992         16.70000           70.20
## 5988                      Guatemala 1992         55.00000           63.80
## 5989                         Guinea 1992        133.70000           52.50
## 5990                  Guinea-Bissau 1992        130.20000           51.80
## 5991                         Guyana 1992         44.50000           64.50
## 5992                          Haiti 1992         95.80000           54.90
## 5993                       Honduras 1992         41.50000           70.10
## 5994               Hong Kong, China 1992               NA           78.01
## 5995                        Hungary 1992         15.40000           69.10
## 5996                        Iceland 1992          4.70000           78.60
## 5997                          India 1992         83.90000           58.80
## 5998                      Indonesia 1992         57.40000           64.90
## 5999                           Iran 1992         40.80000           68.50
## 6000                           Iraq 1992         40.80000           65.40
## 6001                        Ireland 1992          6.80000           76.80
## 6002                         Israel 1992          8.70000           76.30
## 6003                          Italy 1992          7.70000           77.30
## 6004                        Jamaica 1992         24.00000           74.90
## 6005                          Japan 1992          4.40000           79.30
## 6006                         Jordan 1992         28.30000           72.20
## 6007                     Kazakhstan 1992         44.70000           67.10
## 6008                          Kenya 1992         68.90000           60.30
## 6009                       Kiribati 1992         65.00000           58.40
## 6010                    South Korea 1992          5.50000           72.70
## 6011                         Kuwait 1992         14.00000           80.00
## 6012                Kyrgyz Republic 1992         53.60000           65.60
## 6013                            Lao 1992        105.90000           52.40
## 6014                         Latvia 1992         19.10000           68.40
## 6015                        Lebanon 1992         24.70000           72.20
## 6016                        Lesotho 1992         71.10000           60.40
## 6017                        Liberia 1992        170.30000           51.80
## 6018                          Libya 1992         32.20000           73.80
## 6019                      Lithuania 1992         16.10000           70.30
## 6020                     Luxembourg 1992          6.30000           75.80
## 6021                   Macao, China 1992               NA           75.86
## 6022                 Macedonia, FYR 1992         30.10000           71.60
## 6023                     Madagascar 1992         92.90000           56.40
## 6024                         Malawi 1992        133.10000           48.30
## 6025                       Malaysia 1992         13.00000           72.20
## 6026                       Maldives 1992         62.50000           67.30
## 6027                           Mali 1992        127.30000           50.80
## 6028                          Malta 1992          9.30000           77.50
## 6029                     Mauritania 1992         76.70000           60.40
## 6030                      Mauritius 1992         18.40000           69.70
## 6031                         Mexico 1992         33.70000           72.10
## 6032          Micronesia, Fed. Sts. 1992         43.00000           64.70
## 6033                        Moldova 1992         28.20000           67.60
## 6034                       Mongolia 1992         70.70000           62.20
## 6035                     Montenegro 1992         14.00000           74.20
## 6036                        Morocco 1992         58.50000           68.40
## 6037                     Mozambique 1992        154.70000           52.10
## 6038                        Namibia 1992         47.80000           62.00
## 6039                          Nepal 1992         88.90000           60.00
## 6040                    Netherlands 1992          6.30000           77.30
## 6041                  New Caledonia 1992               NA           71.31
## 6042                    New Zealand 1992          8.20000           76.20
## 6043                      Nicaragua 1992         47.10000           73.60
## 6044                          Niger 1992        132.60000           48.20
## 6045                        Nigeria 1992        125.50000           54.40
## 6046                         Norway 1992          5.80000           77.10
## 6047                           Oman 1992         26.80000           72.90
## 6048                       Pakistan 1992        102.50000           62.10
## 6049                         Panama 1992         24.60000           75.00
## 6050               Papua New Guinea 1992         63.40000           56.20
## 6051                       Paraguay 1992         34.80000           74.10
## 6052                           Peru 1992         51.00000           69.50
## 6053                    Philippines 1992         37.30000           68.20
## 6054                         Poland 1992         14.30000           71.10
## 6055                       Portugal 1992          9.70000           74.60
## 6056                    Puerto Rico 1992               NA           73.70
## 6057                          Qatar 1992         15.60000           74.50
## 6058                        Romania 1992         29.10000           70.00
## 6059                         Russia 1992         22.00000           68.00
## 6060                         Rwanda 1992        101.30000           48.00
## 6061                      St. Lucia 1992         18.00000           70.50
## 6062 St. Vincent and the Grenadines 1992         19.20000           69.70
## 6063                          Samoa 1992         24.20000           69.50
## 6064                   Saudi Arabia 1992         30.30000           74.60
## 6065                        Senegal 1992         69.60000           58.00
## 6066                         Serbia 1992         20.90000           72.40
## 6067                     Seychelles 1992         13.30000           69.20
## 6068                   Sierra Leone 1992        155.70000           51.90
## 6069                      Singapore 1992          5.00000           76.00
## 6070                Slovak Republic 1992         14.30000           71.40
## 6071                       Slovenia 1992          7.70000           73.80
## 6072                Solomon Islands 1992         30.90000           60.40
## 6073                   South Africa 1992         46.40000           62.40
## 6074                          Spain 1992          8.50000           77.40
## 6075                      Sri Lanka 1992         18.20000           72.00
## 6076                          Sudan 1992         77.90000           59.40
## 6077                       Suriname 1992         38.60000           69.80
## 6078                      Swaziland 1992         58.60000           61.00
## 6079                         Sweden 1992          5.10000           78.10
## 6080                    Switzerland 1992          6.10000           77.90
## 6081                          Syria 1992         28.00000           71.80
## 6082                     Tajikistan 1992         90.10000           62.60
## 6083                       Tanzania 1992         98.90000           54.70
## 6084                       Thailand 1992         27.30000           70.90
## 6085                    Timor-Leste 1992        121.70000           59.90
## 6086                           Togo 1992         87.90000           57.90
## 6087                          Tonga 1992         17.40000           69.40
## 6088            Trinidad and Tobago 1992         26.20000           69.20
## 6089                        Tunisia 1992         41.20000           72.20
## 6090                         Turkey 1992         50.50000           69.20
## 6091                   Turkmenistan 1992         71.90000           63.50
## 6092                         Uganda 1992        106.80000           49.60
## 6093                        Ukraine 1992         16.80000           68.80
## 6094           United Arab Emirates 1992         12.80000           71.10
## 6095                 United Kingdom 1992          7.00000           76.20
## 6096                  United States 1992          8.80000           75.80
## 6097                        Uruguay 1992         19.10000           73.20
## 6098                     Uzbekistan 1992         58.40000           67.30
## 6099                        Vanuatu 1992         27.20000           62.10
## 6100                      Venezuela 1992         23.30000           72.40
## 6101             West Bank and Gaza 1992         32.70000           72.40
## 6102                        Vietnam 1992         34.30000           69.80
## 6103                          Yemen 1992         84.40000           59.30
## 6104                         Zambia 1992        112.40000           49.60
## 6105                       Zimbabwe 1992         54.50000           61.40
## 6106                        Albania 1993         31.40000           73.60
## 6107                        Algeria 1993         37.50000           71.20
## 6108                         Angola 1993        133.40000           48.40
## 6109            Antigua and Barbuda 1993         20.30000           73.40
## 6110                      Argentina 1993         22.10000           73.10
## 6111                        Armenia 1993         37.00000           68.30
## 6112                          Aruba 1993               NA           73.57
## 6113                      Australia 1993          6.30000           77.90
## 6114                        Austria 1993          6.70000           76.20
## 6115                     Azerbaijan 1993         76.20000           64.00
## 6116                        Bahamas 1993         17.20000           69.70
## 6117                        Bahrain 1993         17.90000           72.50
## 6118                     Bangladesh 1993         88.30000           60.50
## 6119                       Barbados 1993         14.50000           73.10
## 6120                        Belarus 1993         13.80000           68.90
## 6121                        Belgium 1993          7.20000           76.50
## 6122                         Belize 1993         27.40000           70.80
## 6123                          Benin 1993        100.90000           56.90
## 6124                         Bhutan 1993         82.40000           62.80
## 6125                        Bolivia 1993         77.50000           63.20
## 6126         Bosnia and Herzegovina 1993         14.20000           68.30
## 6127                       Botswana 1993         45.70000           60.10
## 6128                         Brazil 1993         44.60000           68.50
## 6129                         Brunei 1993          8.80000           74.20
## 6130                       Bulgaria 1993         19.20000           71.10
## 6131                   Burkina Faso 1993        102.40000           51.30
## 6132                        Burundi 1993        104.80000           45.10
## 6133                       Cambodia 1993         86.20000           58.10
## 6134                       Cameroon 1993         89.90000           57.40
## 6135                         Canada 1993          6.10000           77.80
## 6136                     Cape Verde 1993         45.80000           68.40
## 6137       Central African Republic 1993        115.20000           47.50
## 6138                           Chad 1993        112.60000           54.00
## 6139                          Chile 1993         12.70000           75.20
## 6140                          China 1993         40.20000           67.50
## 6141                       Colombia 1993         26.60000           71.40
## 6142                        Comoros 1993         80.60000           58.20
## 6143               Congo, Dem. Rep. 1993        116.80000           54.30
## 6144                    Congo, Rep. 1993         64.60000           53.50
## 6145                     Costa Rica 1993         13.50000           76.60
## 6146                  Cote d'Ivoire 1993        104.70000           53.70
## 6147                        Croatia 1993          9.50000           72.90
## 6148                           Cuba 1993          8.80000           74.70
## 6149                         Cyprus 1993          8.90000           76.80
## 6150                 Czech Republic 1993         10.70000           72.70
## 6151                        Denmark 1993          6.10000           75.40
## 6152                       Djibouti 1993         88.30000           60.70
## 6153             Dominican Republic 1993         41.80000           72.50
## 6154                        Ecuador 1993         38.70000           71.80
## 6155                          Egypt 1993         55.00000           66.40
## 6156                    El Salvador 1993         39.70000           69.30
## 6157              Equatorial Guinea 1993        120.80000           48.60
## 6158                        Eritrea 1993         81.90000           56.20
## 6159                        Estonia 1993         14.50000           68.20
## 6160                       Ethiopia 1993        113.10000           48.40
## 6161                           Fiji 1993         22.90000           64.80
## 6162                        Finland 1993          4.80000           76.00
## 6163                         France 1993          6.30000           77.70
## 6164               French Polynesia 1993               NA           69.68
## 6165                          Gabon 1993         59.10000           60.10
## 6166                         Gambia 1993         74.30000           62.00
## 6167                        Georgia 1993         39.50000           69.20
## 6168                        Germany 1993          5.90000           76.10
## 6169                          Ghana 1993         74.10000           59.50
## 6170                         Greece 1993          9.80000           77.50
## 6171                      Greenland 1993               NA           65.90
## 6172                        Grenada 1993         16.10000           70.00
## 6173                      Guatemala 1993         52.70000           64.20
## 6174                         Guinea 1993        129.90000           53.00
## 6175                  Guinea-Bissau 1993        127.60000           52.00
## 6176                         Guyana 1993         43.40000           64.40
## 6177                          Haiti 1993         93.10000           54.70
## 6178                       Honduras 1993         39.90000           69.90
## 6179               Hong Kong, China 1993               NA           78.25
## 6180                        Hungary 1993         14.20000           69.20
## 6181                        Iceland 1993          4.50000           78.80
## 6182                          India 1993         81.70000           59.10
## 6183                      Indonesia 1993         55.10000           65.30
## 6184                           Iran 1993         39.20000           69.10
## 6185                           Iraq 1993         40.20000           65.40
## 6186                        Ireland 1993          6.40000           76.90
## 6187                         Israel 1993          8.20000           76.90
## 6188                          Italy 1993          7.30000           77.60
## 6189                        Jamaica 1993         23.30000           74.80
## 6190                          Japan 1993          4.30000           79.40
## 6191                         Jordan 1993         27.50000           72.20
## 6192                     Kazakhstan 1993         44.90000           65.30
## 6193                          Kenya 1993         70.40000           59.50
## 6194                       Kiribati 1993         63.20000           58.40
## 6195                    South Korea 1993          5.20000           73.10
## 6196                         Kuwait 1993         13.50000           78.70
## 6197                Kyrgyz Republic 1993         53.30000           65.30
## 6198                            Lao 1993        103.10000           52.80
## 6199                         Latvia 1993         19.60000           66.70
## 6200                        Lebanon 1993         23.70000           72.50
## 6201                        Lesotho 1993         72.30000           60.10
## 6202                        Liberia 1993        167.80000           50.10
## 6203                          Libya 1993         30.80000           74.20
## 6204                      Lithuania 1993         16.00000           69.10
## 6205                     Luxembourg 1993          6.00000           76.20
## 6206                   Macao, China 1993               NA           76.10
## 6207                 Macedonia, FYR 1993         27.90000           71.50
## 6208                     Madagascar 1993         90.70000           56.30
## 6209                         Malawi 1993        128.60000           48.00
## 6210                       Malaysia 1993         12.40000           72.40
## 6211                       Maldives 1993         59.50000           67.90
## 6212                           Mali 1993        126.20000           51.20
## 6213                          Malta 1993          9.00000           77.90
## 6214                     Mauritania 1993         76.40000           60.70
## 6215                      Mauritius 1993         18.40000           69.80
## 6216                         Mexico 1993         32.00000           72.40
## 6217          Micronesia, Fed. Sts. 1993         43.00000           64.90
## 6218                        Moldova 1993         29.20000           67.40
## 6219                       Mongolia 1993         67.80000           62.00
## 6220                     Montenegro 1993         13.80000           73.90
## 6221                        Morocco 1993         56.20000           68.60
## 6222                     Mozambique 1993        151.50000           52.30
## 6223                        Namibia 1993         47.50000           62.00
## 6224                          Nepal 1993         84.70000           60.20
## 6225                    Netherlands 1993          6.10000           77.20
## 6226                  New Caledonia 1993               NA           71.60
## 6227                    New Zealand 1993          7.80000           76.50
## 6228                      Nicaragua 1993         45.20000           73.90
## 6229                          Niger 1993        128.90000           48.60
## 6230                        Nigeria 1993        125.10000           54.50
## 6231                         Norway 1993          5.30000           77.50
## 6232                           Oman 1993         24.50000           73.30
## 6233                       Pakistan 1993        100.70000           62.00
## 6234                         Panama 1993         24.20000           75.20
## 6235               Papua New Guinea 1993         62.60000           56.40
## 6236                       Paraguay 1993         33.80000           74.10
## 6237                           Peru 1993         48.20000           70.00
## 6238                    Philippines 1993         35.90000           68.30
## 6239                         Poland 1993         13.90000           71.70
## 6240                       Portugal 1993          8.80000           74.70
## 6241                    Puerto Rico 1993               NA           73.80
## 6242                          Qatar 1993         14.70000           74.50
## 6243                        Romania 1993         28.50000           69.80
## 6244                         Russia 1993         22.10000           65.20
## 6245                         Rwanda 1993        109.00000           46.70
## 6246                      St. Lucia 1993         17.70000           70.70
## 6247 St. Vincent and the Grenadines 1993         19.00000           69.70
## 6248                          Samoa 1993         23.40000           69.70
## 6249                   Saudi Arabia 1993         28.20000           74.90
## 6250                        Senegal 1993         69.90000           58.20
## 6251                         Serbia 1993         19.90000           72.30
## 6252                     Seychelles 1993         13.00000           69.30
## 6253                   Sierra Leone 1993        155.20000           52.10
## 6254                      Singapore 1993          4.60000           76.20
## 6255                Slovak Republic 1993         13.70000           71.90
## 6256                       Slovenia 1993          7.10000           73.90
## 6257                Solomon Islands 1993         30.30000           60.60
## 6258                   South Africa 1993         46.60000           63.00
## 6259                          Spain 1993          8.00000           77.60
## 6260                      Sri Lanka 1993         18.00000           72.90
## 6261                          Sudan 1993         76.90000           59.50
## 6262                       Suriname 1993         37.50000           69.70
## 6263                      Swaziland 1993         61.40000           61.30
## 6264                         Sweden 1993          4.80000           78.30
## 6265                    Switzerland 1993          5.80000           78.30
## 6266                          Syria 1993         26.80000           72.00
## 6267                     Tajikistan 1993         93.00000           64.20
## 6268                       Tanzania 1993         98.10000           54.50
## 6269                       Thailand 1993         26.00000           70.80
## 6270                    Timor-Leste 1993        116.70000           60.60
## 6271                           Togo 1993         86.80000           57.80
## 6272                          Tonga 1993         16.90000           69.50
## 6273            Trinidad and Tobago 1993         25.90000           69.30
## 6274                        Tunisia 1993         39.60000           72.20
## 6275                         Turkey 1993         48.00000           69.70
## 6276                   Turkmenistan 1993         71.90000           63.50
## 6277                         Uganda 1993        104.50000           49.00
## 6278                        Ukraine 1993         17.00000           68.30
## 6279           United Arab Emirates 1993         12.20000           71.30
## 6280                 United Kingdom 1993          6.60000           76.30
## 6281                  United States 1993          8.50000           75.70
## 6282                        Uruguay 1993         18.90000           73.20
## 6283                     Uzbekistan 1993         58.10000           67.00
## 6284                        Vanuatu 1993         26.40000           62.20
## 6285                      Venezuela 1993         22.90000           72.50
## 6286             West Bank and Gaza 1993         31.50000           72.80
## 6287                        Vietnam 1993         33.10000           70.10
## 6288                          Yemen 1993         82.70000           59.60
## 6289                         Zambia 1993        111.30000           48.60
## 6290                       Zimbabwe 1993         56.40000           59.80
## 6291                        Albania 1994         30.30000           73.60
## 6292                        Algeria 1994         36.90000           71.40
## 6293                         Angola 1994        133.20000           50.00
## 6294            Antigua and Barbuda 1994         19.20000           73.40
## 6295                      Argentina 1994         21.40000           73.40
## 6296                        Armenia 1994         35.30000           68.60
## 6297                          Aruba 1994               NA           73.60
## 6298                      Australia 1994          6.00000           78.10
## 6299                        Austria 1994          6.20000           76.50
## 6300                     Azerbaijan 1994         76.10000           63.50
## 6301                        Bahamas 1994         16.30000           69.50
## 6302                        Bahrain 1994         16.80000           72.90
## 6303                     Bangladesh 1994         84.60000           61.20
## 6304                       Barbados 1994         14.10000           73.00
## 6305                        Belarus 1994         14.10000           68.60
## 6306                        Belgium 1994          6.80000           76.60
## 6307                         Belize 1994         26.10000           70.60
## 6308                          Benin 1994         98.90000           56.80
## 6309                         Bhutan 1994         78.80000           63.10
## 6310                        Bolivia 1994         74.80000           63.80
## 6311         Bosnia and Herzegovina 1994         12.90000           71.10
## 6312                       Botswana 1994         47.30000           58.60
## 6313                         Brazil 1994         42.20000           68.80
## 6314                         Brunei 1994          8.50000           74.40
## 6315                       Bulgaria 1994         19.30000           70.90
## 6316                   Burkina Faso 1994        102.10000           51.30
## 6317                        Burundi 1994        104.30000           45.00
## 6318                       Cambodia 1994         86.90000           58.00
## 6319                       Cameroon 1994         91.50000           57.00
## 6320                         Canada 1994          6.00000           77.90
## 6321                     Cape Verde 1994         45.10000           68.30
## 6322       Central African Republic 1994        115.40000           47.20
## 6323                           Chad 1994        111.70000           53.60
## 6324                          Chile 1994         11.70000           75.30
## 6325                          China 1994         39.00000           67.90
## 6326                       Colombia 1994         25.80000           71.60
## 6327                        Comoros 1994         78.70000           58.50
## 6328               Congo, Dem. Rep. 1994        115.80000           54.30
## 6329                    Congo, Rep. 1994         66.60000           53.20
## 6330                     Costa Rica 1994         13.20000           76.70
## 6331                  Cote d'Ivoire 1994        104.60000           53.20
## 6332                        Croatia 1994          9.00000           73.40
## 6333                           Cuba 1994          8.60000           74.80
## 6334                         Cyprus 1994          8.40000           76.40
## 6335                 Czech Republic 1994          9.70000           73.00
## 6336                        Denmark 1994          5.70000           75.40
## 6337                       Djibouti 1994         87.20000           60.00
## 6338             Dominican Republic 1994         40.30000           72.50
## 6339                        Ecuador 1994         36.90000           72.20
## 6340                          Egypt 1994         52.20000           66.70
## 6341                    El Salvador 1994         37.60000           69.60
## 6342              Equatorial Guinea 1994        118.50000           48.50
## 6343                        Eritrea 1994         78.00000           57.00
## 6344                        Estonia 1994         13.60000           66.30
## 6345                       Ethiopia 1994        109.40000           48.80
## 6346                           Fiji 1994         22.40000           64.70
## 6347                        Finland 1994          4.50000           76.40
## 6348                         France 1994          5.80000           78.00
## 6349               French Polynesia 1994               NA           70.05
## 6350                          Gabon 1994         58.60000           59.90
## 6351                         Gambia 1994         72.60000           62.30
## 6352                        Georgia 1994         38.90000           70.20
## 6353                        Germany 1994          5.50000           76.40
## 6354                          Ghana 1994         73.00000           59.60
## 6355                         Greece 1994          9.40000           77.70
## 6356                      Greenland 1994               NA           66.30
## 6357                        Grenada 1994         15.60000           70.40
## 6358                      Guatemala 1994         50.60000           64.60
## 6359                         Guinea 1994        126.20000           53.10
## 6360                  Guinea-Bissau 1994        124.80000           52.20
## 6361                         Guyana 1994         42.30000           64.50
## 6362                          Haiti 1994         90.40000           55.40
## 6363                       Honduras 1994         38.40000           70.10
## 6364               Hong Kong, China 1994               NA           78.48
## 6365                        Hungary 1994         13.00000           69.50
## 6366                        Iceland 1994          4.30000           79.10
## 6367                          India 1994         79.60000           59.50
## 6368                      Indonesia 1994         52.90000           65.70
## 6369                           Iran 1994         37.70000           69.60
## 6370                           Iraq 1994         39.50000           65.40
## 6371                        Ireland 1994          6.20000           77.30
## 6372                         Israel 1994          7.60000           77.10
## 6373                          Italy 1994          6.90000           77.80
## 6374                        Jamaica 1994         22.60000           74.80
## 6375                          Japan 1994          4.30000           79.80
## 6376                         Jordan 1994         26.80000           72.40
## 6377                     Kazakhstan 1994         45.00000           64.60
## 6378                          Kenya 1994         71.40000           58.70
## 6379                       Kiribati 1994         61.60000           58.70
## 6380                    South Korea 1994          5.00000           73.60
## 6381                         Kuwait 1994         13.10000           77.60
## 6382                Kyrgyz Republic 1994         52.60000           65.00
## 6383                            Lao 1994        100.20000           53.20
## 6384                         Latvia 1994         19.90000           65.70
## 6385                        Lebanon 1994         22.70000           73.00
## 6386                        Lesotho 1994         74.30000           59.20
## 6387                        Liberia 1994        163.70000           48.90
## 6388                          Libya 1994         29.60000           74.40
## 6389                      Lithuania 1994         14.90000           68.70
## 6390                     Luxembourg 1994          5.60000           76.50
## 6391                   Macao, China 1994               NA           76.33
## 6392                 Macedonia, FYR 1994         24.90000           71.70
## 6393                     Madagascar 1994         88.40000           56.80
## 6394                         Malawi 1994        124.90000           47.40
## 6395                       Malaysia 1994         11.90000           72.40
## 6396                       Maldives 1994         56.50000           68.60
## 6397                           Mali 1994        125.30000           51.20
## 6398                          Malta 1994          8.70000           78.20
## 6399                     Mauritania 1994         76.30000           60.70
## 6400                      Mauritius 1994         18.80000           70.00
## 6401                         Mexico 1994         30.40000           72.70
## 6402          Micronesia, Fed. Sts. 1994         43.10000           65.10
## 6403                        Moldova 1994         30.20000           65.80
## 6404                       Mongolia 1994         65.00000           62.00
## 6405                     Montenegro 1994         13.70000           73.70
## 6406                        Morocco 1994         54.10000           69.10
## 6407                     Mozambique 1994        147.80000           52.60
## 6408                        Namibia 1994         47.40000           61.50
## 6409                          Nepal 1994         80.70000           61.00
## 6410                    Netherlands 1994          5.80000           77.50
## 6411                  New Caledonia 1994               NA           71.89
## 6412                    New Zealand 1994          7.50000           76.70
## 6413                      Nicaragua 1994         43.30000           74.10
## 6414                          Niger 1994        124.60000           49.10
## 6415                        Nigeria 1994        124.40000           54.90
## 6416                         Norway 1994          4.90000           77.70
## 6417                           Oman 1994         22.50000           73.60
## 6418                       Pakistan 1994         98.90000           61.90
## 6419                         Panama 1994         23.80000           75.20
## 6420               Papua New Guinea 1994         61.90000           56.70
## 6421                       Paraguay 1994         32.80000           74.00
## 6422                           Peru 1994         45.40000           70.50
## 6423                    Philippines 1994         34.60000           68.60
## 6424                         Poland 1994         13.50000           71.70
## 6425                       Portugal 1994          8.10000           75.50
## 6426                    Puerto Rico 1994               NA           73.10
## 6427                          Qatar 1994         13.90000           74.40
## 6428                        Romania 1994         27.90000           69.50
## 6429                         Russia 1994         22.20000           63.80
## 6430                         Rwanda 1994        132.30000           13.20
## 6431                      St. Lucia 1994         17.30000           70.90
## 6432 St. Vincent and the Grenadines 1994         18.90000           69.60
## 6433                          Samoa 1994         22.60000           69.80
## 6434                   Saudi Arabia 1994         26.40000           75.10
## 6435                        Senegal 1994         70.30000           58.20
## 6436                         Serbia 1994         18.80000           72.10
## 6437                     Seychelles 1994         12.70000           69.60
## 6438                   Sierra Leone 1994        154.50000           51.60
## 6439                      Singapore 1994          4.30000           76.30
## 6440                Slovak Republic 1994         13.10000           72.30
## 6441                       Slovenia 1994          6.60000           74.20
## 6442                Solomon Islands 1994         29.70000           60.90
## 6443                   South Africa 1994         47.20000           62.80
## 6444                          Spain 1994          7.50000           77.80
## 6445                      Sri Lanka 1994         17.70000           72.80
## 6446                          Sudan 1994         75.80000           60.20
## 6447                       Suriname 1994         36.50000           69.80
## 6448                      Swaziland 1994         64.90000           60.70
## 6449                         Sweden 1994          4.40000           78.50
## 6450                    Switzerland 1994          5.50000           78.40
## 6451                          Syria 1994         25.70000           72.30
## 6452                     Tajikistan 1994         94.10000           64.10
## 6453                       Tanzania 1994         97.10000           54.00
## 6454                       Thailand 1994         24.80000           70.60
## 6455                    Timor-Leste 1994        112.00000           61.30
## 6456                           Togo 1994         85.50000           57.60
## 6457                          Tonga 1994         16.50000           69.50
## 6458            Trinidad and Tobago 1994         25.70000           69.20
## 6459                        Tunisia 1994         37.80000           72.50
## 6460                         Turkey 1994         45.50000           69.80
## 6461                   Turkmenistan 1994         71.90000           63.40
## 6462                         Uganda 1994        102.50000           48.50
## 6463                        Ukraine 1994         17.30000           67.50
## 6464           United Arab Emirates 1994         11.70000           71.60
## 6465                 United Kingdom 1994          6.30000           76.60
## 6466                  United States 1994          8.20000           75.80
## 6467                        Uruguay 1994         18.50000           73.30
## 6468                     Uzbekistan 1994         57.80000           66.70
## 6469                        Vanuatu 1994         25.80000           62.20
## 6470                      Venezuela 1994         22.60000           72.40
## 6471             West Bank and Gaza 1994         30.40000           73.30
## 6472                        Vietnam 1994         32.00000           70.30
## 6473                          Yemen 1994         81.10000           59.70
## 6474                         Zambia 1994        109.70000           47.70
## 6475                       Zimbabwe 1994         58.10000           58.20
## 6476                        Albania 1995         29.10000           73.70
## 6477                        Algeria 1995         36.30000           71.60
## 6478                         Angola 1995        132.80000           50.90
## 6479            Antigua and Barbuda 1995         18.00000           73.50
## 6480                      Argentina 1995         20.80000           73.50
## 6481                        Armenia 1995         33.70000           69.10
## 6482                          Aruba 1995               NA           73.62
## 6483                      Australia 1995          5.70000           78.30
## 6484                        Austria 1995          5.70000           76.80
## 6485                     Azerbaijan 1995         75.20000           64.60
## 6486                        Bahamas 1995         15.60000           69.70
## 6487                        Bahrain 1995         15.50000           73.00
## 6488                     Bangladesh 1995         81.00000           61.60
## 6489                       Barbados 1995         14.00000           73.30
## 6490                        Belarus 1995         14.40000           68.20
## 6491                        Belgium 1995          6.30000           76.90
## 6492                         Belize 1995         25.10000           70.50
## 6493                          Benin 1995         97.20000           56.70
## 6494                         Bhutan 1995         75.30000           63.80
## 6495                        Bolivia 1995         72.20000           64.40
## 6496         Bosnia and Herzegovina 1995         12.30000           67.00
## 6497                       Botswana 1995         48.90000           56.80
## 6498                         Brazil 1995         39.70000           69.00
## 6499                         Brunei 1995          8.30000           74.70
## 6500                       Bulgaria 1995         19.40000           71.00
## 6501                   Burkina Faso 1995        101.40000           51.30
## 6502                        Burundi 1995        103.20000           44.50
## 6503                       Cambodia 1995         87.60000           58.10
## 6504                       Cameroon 1995         93.00000           56.50
## 6505                         Canada 1995          5.70000           78.00
## 6506                     Cape Verde 1995         43.70000           68.30
## 6507       Central African Republic 1995        115.40000           46.70
## 6508                           Chad 1995        110.90000           53.60
## 6509                          Chile 1995         11.00000           75.40
## 6510                          China 1995         37.70000           68.40
## 6511                       Colombia 1995         25.00000           72.00
## 6512                        Comoros 1995         76.90000           58.90
## 6513               Congo, Dem. Rep. 1995        114.90000           54.00
## 6514                    Congo, Rep. 1995         68.80000           52.60
## 6515                     Costa Rica 1995         13.00000           76.80
## 6516                  Cote d'Ivoire 1995        104.40000           52.50
## 6517                        Croatia 1995          8.70000           73.00
## 6518                           Cuba 1995          8.40000           75.00
## 6519                         Cyprus 1995          7.80000           76.70
## 6520                 Czech Republic 1995          8.80000           73.40
## 6521                        Denmark 1995          5.40000           75.60
## 6522                       Djibouti 1995         86.20000           60.40
## 6523             Dominican Republic 1995         38.90000           72.60
## 6524                        Ecuador 1995         35.20000           72.30
## 6525                          Egypt 1995         49.40000           67.40
## 6526                    El Salvador 1995         35.60000           70.00
## 6527              Equatorial Guinea 1995        116.50000           48.50
## 6528                        Eritrea 1995         74.20000           57.80
## 6529                        Estonia 1995         12.80000           67.70
## 6530                       Ethiopia 1995        105.60000           49.20
## 6531                           Fiji 1995         22.10000           64.50
## 6532                        Finland 1995          4.30000           76.70
## 6533                         France 1995          5.30000           78.20
## 6534               French Polynesia 1995               NA           70.43
## 6535                          Gabon 1995         58.20000           59.80
## 6536                         Gambia 1995         70.90000           62.60
## 6537                        Georgia 1995         38.10000           70.70
## 6538                        Germany 1995          5.30000           76.60
## 6539                          Ghana 1995         72.00000           60.00
## 6540                         Greece 1995          9.10000           77.80
## 6541                      Greenland 1995               NA           66.50
## 6542                        Grenada 1995         15.10000           70.70
## 6543                      Guatemala 1995         48.50000           66.90
## 6544                         Guinea 1995        122.30000           53.40
## 6545                  Guinea-Bissau 1995        122.10000           52.30
## 6546                         Guyana 1995         41.40000           64.40
## 6547                          Haiti 1995         87.80000           56.20
## 6548                       Honduras 1995         36.90000           70.10
## 6549               Hong Kong, China 1995               NA           78.72
## 6550                        Hungary 1995         12.10000           70.10
## 6551                        Iceland 1995          4.10000           78.90
## 6552                          India 1995         77.50000           59.90
## 6553                      Indonesia 1995         50.80000           66.10
## 6554                           Iran 1995         36.20000           69.90
## 6555                           Iraq 1995         38.90000           65.30
## 6556                        Ireland 1995          6.10000           77.10
## 6557                         Israel 1995          7.20000           77.40
## 6558                          Italy 1995          6.40000           78.10
## 6559                        Jamaica 1995         21.90000           74.70
## 6560                          Japan 1995          4.10000           79.70
## 6561                         Jordan 1995         26.20000           72.50
## 6562                     Kazakhstan 1995         44.80000           63.60
## 6563                          Kenya 1995         71.90000           58.10
## 6564                       Kiribati 1995         60.30000           58.90
## 6565                    South Korea 1995          4.70000           74.00
## 6566                         Kuwait 1995         12.70000           76.50
## 6567                Kyrgyz Republic 1995         51.30000           65.10
## 6568                            Lao 1995         97.40000           53.60
## 6569                         Latvia 1995         19.70000           66.50
## 6570                        Lebanon 1995         21.80000           73.40
## 6571                        Lesotho 1995         76.60000           58.70
## 6572                        Liberia 1995        158.30000           50.90
## 6573                          Libya 1995         28.40000           74.60
## 6574                      Lithuania 1995         13.50000           69.00
## 6575                     Luxembourg 1995          5.20000           76.90
## 6576                   Macao, China 1995               NA           76.56
## 6577                 Macedonia, FYR 1995         22.00000           71.80
## 6578                     Madagascar 1995         85.90000           57.20
## 6579                         Malawi 1995        121.90000           46.90
## 6580                       Malaysia 1995         11.50000           72.40
## 6581                       Maldives 1995         53.40000           69.30
## 6582                           Mali 1995        124.50000           51.40
## 6583                          Malta 1995          8.40000           78.40
## 6584                     Mauritania 1995         76.30000           61.20
## 6585                      Mauritius 1995         19.40000           70.30
## 6586                         Mexico 1995         28.80000           73.00
## 6587          Micronesia, Fed. Sts. 1995         43.30000           65.40
## 6588                        Moldova 1995         31.00000           65.40
## 6589                       Mongolia 1995         62.20000           61.70
## 6590                     Montenegro 1995         13.60000           73.50
## 6591                        Morocco 1995         51.80000           69.50
## 6592                     Mozambique 1995        143.40000           52.70
## 6593                        Namibia 1995         47.60000           60.50
## 6594                          Nepal 1995         76.80000           61.70
## 6595                    Netherlands 1995          5.70000           77.60
## 6596                  New Caledonia 1995               NA           72.16
## 6597                    New Zealand 1995          7.10000           77.00
## 6598                      Nicaragua 1995         41.40000           74.40
## 6599                          Niger 1995        119.90000           49.50
## 6600                        Nigeria 1995        123.40000           55.00
## 6601                         Norway 1995          4.60000           77.90
## 6602                           Oman 1995         20.70000           73.90
## 6603                       Pakistan 1995         97.10000           61.80
## 6604                         Panama 1995         23.50000           75.30
## 6605               Papua New Guinea 1995         61.20000           56.90
## 6606                       Paraguay 1995         31.80000           74.10
## 6607                           Peru 1995         42.50000           71.10
## 6608                    Philippines 1995         33.50000           68.80
## 6609                         Poland 1995         12.60000           71.90
## 6610                       Portugal 1995          7.40000           75.50
## 6611                    Puerto Rico 1995               NA           73.30
## 6612                          Qatar 1995         13.20000           74.40
## 6613                        Romania 1995         27.30000           69.40
## 6614                         Russia 1995         22.20000           64.40
## 6615                         Rwanda 1995        129.60000           43.80
## 6616                      St. Lucia 1995         16.90000           71.10
## 6617 St. Vincent and the Grenadines 1995         19.00000           69.60
## 6618                          Samoa 1995         21.80000           70.00
## 6619                   Saudi Arabia 1995         24.80000           75.50
## 6620                        Senegal 1995         70.80000           58.40
## 6621                         Serbia 1995         17.00000           72.00
## 6622                     Seychelles 1995         12.50000           69.80
## 6623                   Sierra Leone 1995        153.40000           50.90
## 6624                      Singapore 1995          4.10000           76.40
## 6625                Slovak Republic 1995         12.60000           72.40
## 6626                       Slovenia 1995          6.20000           74.60
## 6627                Solomon Islands 1995         29.10000           61.10
## 6628                   South Africa 1995         48.20000           62.70
## 6629                          Spain 1995          6.90000           77.90
## 6630                      Sri Lanka 1995         17.20000           71.70
## 6631                          Sudan 1995         74.70000           60.50
## 6632                       Suriname 1995         35.40000           70.10
## 6633                      Swaziland 1995         68.70000           59.10
## 6634                         Sweden 1995          4.00000           78.90
## 6635                    Switzerland 1995          5.20000           78.50
## 6636                          Syria 1995         24.60000           72.70
## 6637                     Tajikistan 1995         93.00000           64.10
## 6638                       Tanzania 1995         95.80000           53.90
## 6639                       Thailand 1995         23.70000           70.60
## 6640                    Timor-Leste 1995        107.30000           61.80
## 6641                           Togo 1995         84.20000           57.60
## 6642                          Tonga 1995         16.20000           69.60
## 6643            Trinidad and Tobago 1995         25.60000           69.30
## 6644                        Tunisia 1995         35.90000           72.90
## 6645                         Turkey 1995         43.10000           70.00
## 6646                   Turkmenistan 1995         71.70000           63.30
## 6647                         Uganda 1995        101.00000           48.30
## 6648                        Ukraine 1995         17.50000           66.50
## 6649           United Arab Emirates 1995         11.20000           71.90
## 6650                 United Kingdom 1995          6.10000           76.70
## 6651                  United States 1995          8.00000           75.90
## 6652                        Uruguay 1995         18.00000           73.40
## 6653                     Uzbekistan 1995         57.30000           66.60
## 6654                        Vanuatu 1995         25.30000           62.30
## 6655                      Venezuela 1995         22.10000           72.70
## 6656             West Bank and Gaza 1995         29.30000           73.70
## 6657                        Vietnam 1995         30.90000           70.60
## 6658                          Yemen 1995         79.70000           60.30
## 6659                         Zambia 1995        107.80000           46.90
## 6660                       Zimbabwe 1995         60.10000           56.00
## 6661                        Albania 1996         27.90000           73.80
## 6662                        Algeria 1996         35.70000           72.10
## 6663                         Angola 1996        132.30000           51.30
## 6664            Antigua and Barbuda 1996         17.10000           73.50
## 6665                      Argentina 1996         20.20000           73.50
## 6666                        Armenia 1996         32.10000           69.40
## 6667                          Aruba 1996               NA           73.65
## 6668                      Australia 1996          5.60000           78.50
## 6669                        Austria 1996          5.30000           77.10
## 6670                     Azerbaijan 1996         73.60000           65.00
## 6671                        Bahamas 1996         14.80000           70.00
## 6672                        Bahrain 1996         14.20000           73.40
## 6673                     Bangladesh 1996         77.40000           62.40
## 6674                       Barbados 1996         13.90000           73.70
## 6675                        Belarus 1996         14.40000           68.10
## 6676                        Belgium 1996          5.90000           77.20
## 6677                         Belize 1996         24.10000           70.40
## 6678                          Benin 1996         95.60000           56.60
## 6679                         Bhutan 1996         71.80000           64.70
## 6680                        Bolivia 1996         69.50000           65.10
## 6681         Bosnia and Herzegovina 1996         11.00000           73.80
## 6682                       Botswana 1996         50.20000           54.80
## 6683                         Brazil 1996         37.20000           69.30
## 6684                         Brunei 1996          8.10000           74.90
## 6685                       Bulgaria 1996         19.50000           70.90
## 6686                   Burkina Faso 1996        100.50000           51.50
## 6687                        Burundi 1996        101.70000           44.30
## 6688                       Cambodia 1996         88.20000           58.30
## 6689                       Cameroon 1996         94.10000           56.20
## 6690                         Canada 1996          5.60000           78.30
## 6691                     Cape Verde 1996         41.60000           68.20
## 6692       Central African Republic 1996        115.40000           46.30
## 6693                           Chad 1996        110.00000           53.00
## 6694                          Chile 1996         10.50000           75.70
## 6695                          China 1996         36.40000           68.80
## 6696                       Colombia 1996         24.20000           72.20
## 6697                        Comoros 1996         75.60000           58.40
## 6698               Congo, Dem. Rep. 1996        113.80000           51.80
## 6699                    Congo, Rep. 1996         71.20000           52.20
## 6700                     Costa Rica 1996         12.80000           76.80
## 6701                  Cote d'Ivoire 1996        104.00000           52.30
## 6702                        Croatia 1996          8.30000           73.40
## 6703                           Cuba 1996          8.20000           75.20
## 6704                         Cyprus 1996          7.40000           77.10
## 6705                 Czech Republic 1996          7.90000           73.80
## 6706                        Denmark 1996          5.10000           75.90
## 6707                       Djibouti 1996         85.10000           60.30
## 6708             Dominican Republic 1996         37.60000           72.60
## 6709                        Ecuador 1996         33.60000           72.50
## 6710                          Egypt 1996         46.60000           67.90
## 6711                    El Salvador 1996         33.70000           70.30
## 6712              Equatorial Guinea 1996        114.30000           48.90
## 6713                        Eritrea 1996         70.60000           58.40
## 6714                        Estonia 1996         12.00000           69.80
## 6715                       Ethiopia 1996        102.10000           50.00
## 6716                           Fiji 1996         21.80000           64.30
## 6717                        Finland 1996          4.00000           76.80
## 6718                         France 1996          5.00000           78.40
## 6719               French Polynesia 1996               NA           70.82
## 6720                          Gabon 1996         57.80000           59.60
## 6721                         Gambia 1996         69.30000           62.80
## 6722                        Georgia 1996         37.10000           71.20
## 6723                        Germany 1996          5.00000           76.90
## 6724                          Ghana 1996         71.00000           60.10
## 6725                         Greece 1996          8.70000           77.90
## 6726                      Greenland 1996               NA           66.80
## 6727                        Grenada 1996         14.70000           70.80
## 6728                      Guatemala 1996         46.60000           68.10
## 6729                         Guinea 1996        118.50000           53.80
## 6730                  Guinea-Bissau 1996        119.10000           52.60
## 6731                         Guyana 1996         40.50000           64.30
## 6732                          Haiti 1996         85.10000           56.70
## 6733                       Honduras 1996         35.60000           70.10
## 6734               Hong Kong, China 1996               NA           78.99
## 6735                        Hungary 1996         11.50000           70.50
## 6736                        Iceland 1996          3.90000           79.40
## 6737                          India 1996         75.40000           60.20
## 6738                      Indonesia 1996         48.70000           66.40
## 6739                           Iran 1996         34.70000           69.80
## 6740                           Iraq 1996         38.30000           65.30
## 6741                        Ireland 1996          6.10000           77.50
## 6742                         Israel 1996          6.70000           77.70
## 6743                          Italy 1996          6.00000           78.30
## 6744                        Jamaica 1996         21.20000           74.50
## 6745                          Japan 1996          4.00000           80.20
## 6746                         Jordan 1996         25.50000           72.60
## 6747                     Kazakhstan 1996         44.00000           63.50
## 6748                          Kenya 1996         71.70000           57.40
## 6749                       Kiribati 1996         58.90000           59.20
## 6750                    South Korea 1996          4.50000           74.50
## 6751                         Kuwait 1996         12.30000           76.00
## 6752                Kyrgyz Republic 1996         49.50000           65.20
## 6753                            Lao 1996         94.40000           54.00
## 6754                         Latvia 1996         19.10000           68.60
## 6755                        Lebanon 1996         20.80000           74.00
## 6756                        Lesotho 1996         78.80000           57.90
## 6757                        Liberia 1996        151.90000           50.40
## 6758                          Libya 1996         27.40000           74.60
## 6759                      Lithuania 1996         12.00000           70.20
## 6760                     Luxembourg 1996          4.90000           77.10
## 6761                   Macao, China 1996               NA           76.78
## 6762                 Macedonia, FYR 1996         19.50000           72.10
## 6763                     Madagascar 1996         83.10000           57.60
## 6764                         Malawi 1996        119.50000           46.30
## 6765                       Malaysia 1996         11.10000           72.50
## 6766                       Maldives 1996         50.10000           70.00
## 6767                           Mali 1996        123.60000           51.80
## 6768                          Malta 1996          8.00000           78.50
## 6769                     Mauritania 1996         76.30000           61.50
## 6770                      Mauritius 1996         19.90000           70.50
## 6771                         Mexico 1996         27.30000           73.30
## 6772          Micronesia, Fed. Sts. 1996         43.50000           65.70
## 6773                        Moldova 1996         31.30000           66.10
## 6774                       Mongolia 1996         59.40000           61.70
## 6775                     Montenegro 1996         13.60000           73.40
## 6776                        Morocco 1996         49.70000           70.00
## 6777                     Mozambique 1996        138.30000           52.60
## 6778                        Namibia 1996         48.00000           59.30
## 6779                          Nepal 1996         73.10000           62.50
## 6780                    Netherlands 1996          5.50000           77.60
## 6781                  New Caledonia 1996               NA           72.43
## 6782                    New Zealand 1996          6.90000           77.30
## 6783                      Nicaragua 1996         39.50000           74.70
## 6784                          Niger 1996        115.40000           50.20
## 6785                        Nigeria 1996        121.90000           55.00
## 6786                         Norway 1996          4.40000           78.20
## 6787                           Oman 1996         19.20000           74.20
## 6788                       Pakistan 1996         95.20000           61.90
## 6789                         Panama 1996         23.30000           75.40
## 6790               Papua New Guinea 1996         60.50000           57.00
## 6791                       Paraguay 1996         30.90000           74.10
## 6792                           Peru 1996         39.70000           71.70
## 6793                    Philippines 1996         32.60000           68.90
## 6794                         Poland 1996         11.60000           72.40
## 6795                       Portugal 1996          7.00000           75.50
## 6796                    Puerto Rico 1996               NA           73.60
## 6797                          Qatar 1996         12.50000           74.50
## 6798                        Romania 1996         26.70000           69.10
## 6799                         Russia 1996         22.00000           65.70
## 6800                         Rwanda 1996        120.30000           44.60
## 6801                      St. Lucia 1996         16.50000           71.20
## 6802 St. Vincent and the Grenadines 1996         19.10000           69.40
## 6803                          Samoa 1996         21.10000           70.20
## 6804                   Saudi Arabia 1996         23.40000           75.80
## 6805                        Senegal 1996         71.20000           58.80
## 6806                         Serbia 1996         15.10000           71.90
## 6807                     Seychelles 1996         12.30000           69.90
## 6808                   Sierra Leone 1996        152.00000           51.90
## 6809                      Singapore 1996          3.90000           76.70
## 6810                Slovak Republic 1996         12.00000           72.80
## 6811                       Slovenia 1996          5.80000           75.00
## 6812                Solomon Islands 1996         28.70000           61.40
## 6813                   South Africa 1996         49.40000           61.60
## 6814                          Spain 1996          6.40000           78.10
## 6815                      Sri Lanka 1996         16.70000           71.30
## 6816                          Sudan 1996         73.60000           60.60
## 6817                       Suriname 1996         34.30000           70.20
## 6818                      Swaziland 1996         72.50000           57.10
## 6819                         Sweden 1996          3.80000           79.10
## 6820                    Switzerland 1996          5.00000           79.10
## 6821                          Syria 1996         23.60000           73.10
## 6822                     Tajikistan 1996         90.40000           63.30
## 6823                       Tanzania 1996         93.80000           53.80
## 6824                       Thailand 1996         22.70000           70.60
## 6825                    Timor-Leste 1996        102.90000           62.30
## 6826                           Togo 1996         82.80000           57.30
## 6827                          Tonga 1996         15.90000           69.70
## 6828            Trinidad and Tobago 1996         25.50000           69.30
## 6829                        Tunisia 1996         33.90000           73.40
## 6830                         Turkey 1996         40.80000           70.60
## 6831                   Turkmenistan 1996         71.20000           63.20
## 6832                         Uganda 1996         99.60000           48.20
## 6833                        Ukraine 1996         17.50000           66.70
## 6834           United Arab Emirates 1996         10.80000           72.10
## 6835                 United Kingdom 1996          5.90000           76.90
## 6836                  United States 1996          7.70000           76.30
## 6837                        Uruguay 1996         17.50000           73.50
## 6838                     Uzbekistan 1996         56.80000           66.70
## 6839                        Vanuatu 1996         24.90000           62.40
## 6840                      Venezuela 1996         21.50000           73.10
## 6841             West Bank and Gaza 1996         28.30000           74.00
## 6842                        Vietnam 1996         29.90000           70.90
## 6843                          Yemen 1996         78.20000           60.70
## 6844                         Zambia 1996        106.10000           46.30
## 6845                       Zimbabwe 1996         61.60000           54.40
## 6846                        Albania 1997         26.80000           74.10
## 6847                        Algeria 1997         35.10000           72.40
## 6848                         Angola 1997        131.50000           51.70
## 6849            Antigua and Barbuda 1997         16.20000           73.90
## 6850                      Argentina 1997         19.60000           73.60
## 6851                        Armenia 1997         30.60000           70.00
## 6852                          Aruba 1997               NA           73.67
## 6853                      Australia 1997          5.40000           78.80
## 6854                        Austria 1997          5.00000           77.60
## 6855                     Azerbaijan 1997         71.20000           65.30
## 6856                        Bahamas 1997         14.10000           70.20
## 6857                        Bahrain 1997         13.10000           73.80
## 6858                     Bangladesh 1997         74.00000           63.20
## 6859                       Barbados 1997         14.00000           73.90
## 6860                        Belarus 1997         14.20000           68.00
## 6861                        Belgium 1997          5.50000           77.40
## 6862                         Belize 1997         23.30000           69.70
## 6863                          Benin 1997         94.20000           56.90
## 6864                         Bhutan 1997         68.40000           65.10
## 6865                        Bolivia 1997         66.80000           65.60
## 6866         Bosnia and Herzegovina 1997         10.10000           74.40
## 6867                       Botswana 1997         51.30000           52.90
## 6868                         Brazil 1997         34.80000           69.60
## 6869                         Brunei 1997          7.90000           75.20
## 6870                       Bulgaria 1997         19.40000           70.60
## 6871                   Burkina Faso 1997         99.40000           51.60
## 6872                        Burundi 1997        100.00000           45.00
## 6873                       Cambodia 1997         88.20000           58.70
## 6874                       Cameroon 1997         94.70000           55.50
## 6875                         Canada 1997          5.40000           78.60
## 6876                     Cape Verde 1997         38.80000           68.20
## 6877       Central African Republic 1997        115.10000           45.90
## 6878                           Chad 1997        109.10000           52.50
## 6879                          Chile 1997         10.20000           76.20
## 6880                          China 1997         35.00000           69.10
## 6881                       Colombia 1997         23.40000           72.80
## 6882                        Comoros 1997         74.50000           59.40
## 6883               Congo, Dem. Rep. 1997        112.50000           53.20
## 6884                    Congo, Rep. 1997         73.50000           46.30
## 6885                     Costa Rica 1997         12.70000           77.00
## 6886                  Cote d'Ivoire 1997        103.30000           52.30
## 6887                        Croatia 1997          8.00000           73.40
## 6888                           Cuba 1997          7.80000           75.40
## 6889                         Cyprus 1997          6.90000           77.10
## 6890                 Czech Republic 1997          7.20000           74.20
## 6891                        Denmark 1997          5.00000           76.20
## 6892                       Djibouti 1997         83.90000           60.10
## 6893             Dominican Republic 1997         36.40000           72.90
## 6894                        Ecuador 1997         32.10000           72.70
## 6895                          Egypt 1997         44.00000           68.20
## 6896                    El Salvador 1997         31.80000           70.80
## 6897              Equatorial Guinea 1997        112.10000           50.30
## 6898                        Eritrea 1997         67.20000           59.00
## 6899                        Estonia 1997         11.10000           70.00
## 6900                       Ethiopia 1997         98.70000           50.60
## 6901                           Fiji 1997         21.50000           64.10
## 6902                        Finland 1997          3.90000           77.10
## 6903                         France 1997          4.80000           78.70
## 6904               French Polynesia 1997               NA           71.21
## 6905                          Gabon 1997         57.30000           59.90
## 6906                         Gambia 1997         67.70000           63.10
## 6907                        Georgia 1997         35.90000           71.30
## 6908                        Germany 1997          4.80000           77.30
## 6909                          Ghana 1997         69.80000           59.80
## 6910                         Greece 1997          8.30000           78.10
## 6911                      Greenland 1997               NA           66.90
## 6912                        Grenada 1997         14.30000           70.80
## 6913                      Guatemala 1997         44.70000           67.70
## 6914                         Guinea 1997        114.70000           54.00
## 6915                  Guinea-Bissau 1997        116.20000           52.80
## 6916                         Guyana 1997         39.60000           64.30
## 6917                          Haiti 1997         82.40000           57.00
## 6918                       Honduras 1997         34.30000           70.20
## 6919               Hong Kong, China 1997               NA           79.29
## 6920                        Hungary 1997         11.10000           70.90
## 6921                        Iceland 1997          3.70000           79.60
## 6922                          India 1997         73.10000           60.50
## 6923                      Indonesia 1997         46.70000           66.70
## 6924                           Iran 1997         33.20000           70.30
## 6925                           Iraq 1997         37.60000           65.20
## 6926                        Ireland 1997          6.10000           77.40
## 6927                         Israel 1997          6.40000           77.90
## 6928                          Italy 1997          5.60000           78.70
## 6929                        Jamaica 1997         20.50000           74.40
## 6930                          Japan 1997          3.80000           80.40
## 6931                         Jordan 1997         24.90000           72.80
## 6932                     Kazakhstan 1997         42.70000           63.90
## 6933                          Kenya 1997         71.10000           56.70
## 6934                       Kiribati 1997         57.50000           59.40
## 6935                    South Korea 1997          4.50000           74.90
## 6936                         Kuwait 1997         11.90000           76.20
## 6937                Kyrgyz Republic 1997         47.50000           65.30
## 6938                            Lao 1997         91.50000           54.40
## 6939                         Latvia 1997         18.10000           69.30
## 6940                        Lebanon 1997         19.90000           74.40
## 6941                        Lesotho 1997         80.50000           56.60
## 6942                        Liberia 1997        145.20000           53.80
## 6943                          Libya 1997         26.50000           74.80
## 6944                      Lithuania 1997         11.00000           71.10
## 6945                     Luxembourg 1997          4.60000           77.40
## 6946                   Macao, China 1997               NA           77.00
## 6947                 Macedonia, FYR 1997         17.50000           72.30
## 6948                     Madagascar 1997         80.00000           58.00
## 6949                         Malawi 1997        117.10000           45.80
## 6950                       Malaysia 1997         10.70000           72.80
## 6951                       Maldives 1997         46.70000           70.80
## 6952                           Mali 1997        122.60000           52.20
## 6953                          Malta 1997          7.60000           78.80
## 6954                     Mauritania 1997         76.30000           62.00
## 6955                      Mauritius 1997         19.80000           70.70
## 6956                         Mexico 1997         25.80000           73.60
## 6957          Micronesia, Fed. Sts. 1997         43.60000           65.90
## 6958                        Moldova 1997         30.80000           67.90
## 6959                       Mongolia 1997         56.60000           61.90
## 6960                     Montenegro 1997         13.50000           73.30
## 6961                        Morocco 1997         47.70000           70.40
## 6962                     Mozambique 1997        132.70000           52.50
## 6963                        Namibia 1997         48.40000           58.10
## 6964                          Nepal 1997         69.60000           63.40
## 6965                    Netherlands 1997          5.30000           77.90
## 6966                  New Caledonia 1997               NA           72.70
## 6967                    New Zealand 1997          6.60000           77.60
## 6968                      Nicaragua 1997         37.60000           75.00
## 6969                          Niger 1997        111.30000           50.60
## 6970                        Nigeria 1997        119.90000           55.00
## 6971                         Norway 1997          4.20000           78.30
## 6972                           Oman 1997         17.70000           74.50
## 6973                       Pakistan 1997         93.30000           61.80
## 6974                         Panama 1997         23.00000           75.60
## 6975               Papua New Guinea 1997         59.90000           57.20
## 6976                       Paraguay 1997         30.10000           74.20
## 6977                           Peru 1997         36.90000           72.40
## 6978                    Philippines 1997         31.80000           69.00
## 6979                         Poland 1997         10.40000           72.70
## 6980                       Portugal 1997          6.60000           75.80
## 6981                    Puerto Rico 1997               NA           74.50
## 6982                          Qatar 1997         12.00000           74.60
## 6983                        Romania 1997         26.00000           69.10
## 6984                         Russia 1997         21.60000           67.00
## 6985                         Rwanda 1997        121.70000           44.00
## 6986                      St. Lucia 1997         16.10000           71.50
## 6987 St. Vincent and the Grenadines 1997         19.10000           69.70
## 6988                          Samoa 1997         20.40000           70.40
## 6989                   Saudi Arabia 1997         22.10000           76.00
## 6990                        Senegal 1997         71.20000           58.90
## 6991                         Serbia 1997         13.30000           72.10
## 6992                     Seychelles 1997         12.20000           70.10
## 6993                   Sierra Leone 1997        150.10000           51.30
## 6994                      Singapore 1997          3.80000           77.20
## 6995                Slovak Republic 1997         11.60000           72.80
## 6996                       Slovenia 1997          5.40000           75.20
## 6997                Solomon Islands 1997         28.30000           61.50
## 6998                   South Africa 1997         50.90000           60.00
## 6999                          Spain 1997          6.10000           78.60
## 7000                      Sri Lanka 1997         16.00000           71.40
## 7001                          Sudan 1997         72.30000           60.80
## 7002                       Suriname 1997         33.30000           70.20
## 7003                      Swaziland 1997         76.00000           55.80
## 7004                         Sweden 1997          3.60000           79.40
## 7005                    Switzerland 1997          4.90000           79.20
## 7006                          Syria 1997         22.60000           73.40
## 7007                     Tajikistan 1997         87.00000           64.80
## 7008                       Tanzania 1997         91.40000           53.80
## 7009                       Thailand 1997         21.70000           70.50
## 7010                    Timor-Leste 1997         98.50000           62.40
## 7011                           Togo 1997         81.20000           56.90
## 7012                          Tonga 1997         15.70000           69.70
## 7013            Trinidad and Tobago 1997         25.50000           69.40
## 7014                        Tunisia 1997         31.90000           73.90
## 7015                         Turkey 1997         38.50000           71.20
## 7016                   Turkmenistan 1997         70.40000           63.20
## 7017                         Uganda 1997         98.10000           48.50
## 7018                        Ukraine 1997         17.40000           67.30
## 7019           United Arab Emirates 1997         10.50000           72.40
## 7020                 United Kingdom 1997          5.80000           77.10
## 7021                  United States 1997          7.50000           76.60
## 7022                        Uruguay 1997         16.80000           73.70
## 7023                     Uzbekistan 1997         56.00000           66.90
## 7024                        Vanuatu 1997         25.50000           61.20
## 7025                      Venezuela 1997         20.80000           73.60
## 7026             West Bank and Gaza 1997         27.30000           74.20
## 7027                        Vietnam 1997         28.90000           71.10
## 7028                          Yemen 1997         76.50000           61.10
## 7029                         Zambia 1997        104.60000           45.90
## 7030                       Zimbabwe 1997         62.70000           52.80
## 7031                        Albania 1998         25.50000           74.20
## 7032                        Algeria 1998         34.70000           72.60
## 7033                         Angola 1998        130.60000           51.80
## 7034            Antigua and Barbuda 1998         15.30000           74.10
## 7035                      Argentina 1998         19.10000           73.80
## 7036                        Armenia 1998         29.20000           70.50
## 7037                          Aruba 1998               NA           73.70
## 7038                      Australia 1998          5.30000           79.20
## 7039                        Austria 1998          4.80000           77.80
## 7040                     Azerbaijan 1998         68.10000           65.60
## 7041                        Bahamas 1998         13.60000           70.10
## 7042                        Bahrain 1998         12.10000           74.00
## 7043                     Bangladesh 1998         70.60000           63.90
## 7044                       Barbados 1998         14.20000           74.10
## 7045                        Belarus 1998         13.60000           67.90
## 7046                        Belgium 1998          5.20000           77.50
## 7047                         Belize 1998         22.50000           69.50
## 7048                          Benin 1998         92.70000           57.00
## 7049                         Bhutan 1998         65.20000           65.60
## 7050                        Bolivia 1998         64.10000           66.30
## 7051         Bosnia and Herzegovina 1998          9.30000           74.80
## 7052                       Botswana 1998         52.00000           50.90
## 7053                         Brazil 1998         32.40000           69.90
## 7054                         Brunei 1998          7.80000           75.60
## 7055                       Bulgaria 1998         19.20000           71.00
## 7056                   Burkina Faso 1998         98.30000           51.80
## 7057                        Burundi 1998         97.90000           45.50
## 7058                       Cambodia 1998         87.10000           59.00
## 7059                       Cameroon 1998         94.70000           55.00
## 7060                         Canada 1998          5.40000           78.80
## 7061                     Cape Verde 1998         35.50000           68.20
## 7062       Central African Republic 1998        114.70000           45.70
## 7063                           Chad 1998        108.00000           52.10
## 7064                          Chile 1998         10.10000           76.60
## 7065                          China 1998         33.50000           69.40
## 7066                       Colombia 1998         22.60000           73.10
## 7067                        Comoros 1998         73.70000           60.00
## 7068               Congo, Dem. Rep. 1998        110.90000           53.50
## 7069                    Congo, Rep. 1998         75.30000           49.90
## 7070                     Costa Rica 1998         12.30000           77.20
## 7071                  Cote d'Ivoire 1998        102.30000           52.20
## 7072                        Croatia 1998          7.70000           73.50
## 7073                           Cuba 1998          7.30000           75.60
## 7074                         Cyprus 1998          6.40000           77.10
## 7075                 Czech Republic 1998          6.50000           74.50
## 7076                        Denmark 1998          4.80000           76.70
## 7077                       Djibouti 1998         82.60000           60.00
## 7078             Dominican Republic 1998         35.20000           72.90
## 7079                        Ecuador 1998         30.70000           72.80
## 7080                          Egypt 1998         41.40000           68.60
## 7081                    El Salvador 1998         30.00000           71.00
## 7082              Equatorial Guinea 1998        109.70000           51.20
## 7083                        Eritrea 1998         64.10000           58.80
## 7084                        Estonia 1998         10.30000           69.50
## 7085                       Ethiopia 1998         95.60000           51.10
## 7086                           Fiji 1998         21.20000           64.20
## 7087                        Finland 1998          3.80000           77.30
## 7088                         France 1998          4.60000           78.70
## 7089               French Polynesia 1998               NA           71.59
## 7090                          Gabon 1998         56.80000           60.00
## 7091                         Gambia 1998         66.20000           63.40
## 7092                        Georgia 1998         34.50000           71.40
## 7093                        Germany 1998          4.60000           77.60
## 7094                          Ghana 1998         68.40000           60.10
## 7095                         Greece 1998          7.80000           78.20
## 7096                      Greenland 1998               NA           67.20
## 7097                        Grenada 1998         14.00000           70.60
## 7098                      Guatemala 1998         43.00000           67.70
## 7099                         Guinea 1998        110.90000           54.00
## 7100                  Guinea-Bissau 1998        113.10000           51.70
## 7101                         Guyana 1998         38.80000           64.30
## 7102                          Haiti 1998         79.90000           57.50
## 7103                       Honduras 1998         36.80000           63.90
## 7104               Hong Kong, China 1998               NA           79.63
## 7105                        Hungary 1998         10.70000           71.10
## 7106                        Iceland 1998          3.50000           79.90
## 7107                          India 1998         70.90000           60.80
## 7108                      Indonesia 1998         44.70000           67.00
## 7109                           Iran 1998         31.70000           70.80
## 7110                           Iraq 1998         37.00000           65.70
## 7111                        Ireland 1998          6.10000           77.60
## 7112                         Israel 1998          6.10000           78.10
## 7113                          Italy 1998          5.30000           78.90
## 7114                        Jamaica 1998         19.90000           74.50
## 7115                          Japan 1998          3.60000           80.50
## 7116                         Jordan 1998         24.30000           73.00
## 7117                     Kazakhstan 1998         41.10000           64.20
## 7118                          Kenya 1998         69.90000           56.10
## 7119                       Kiribati 1998         56.10000           59.50
## 7120                    South Korea 1998          4.70000           75.40
## 7121                         Kuwait 1998         11.50000           76.30
## 7122                Kyrgyz Republic 1998         45.50000           65.60
## 7123                            Lao 1998         88.70000           54.90
## 7124                         Latvia 1998         16.90000           69.00
## 7125                        Lebanon 1998         19.00000           74.90
## 7126                        Lesotho 1998         81.80000           54.60
## 7127                        Liberia 1998        138.10000           54.40
## 7128                          Libya 1998         25.70000           74.80
## 7129                      Lithuania 1998         10.40000           71.30
## 7130                     Luxembourg 1998          4.40000           77.70
## 7131                   Macao, China 1998               NA           77.21
## 7132                 Macedonia, FYR 1998         16.10000           72.40
## 7133                     Madagascar 1998         76.70000           58.30
## 7134                         Malawi 1998        113.90000           45.30
## 7135                       Malaysia 1998         10.10000           73.00
## 7136                       Maldives 1998         43.10000           71.70
## 7137                           Mali 1998        121.00000           50.90
## 7138                          Malta 1998          7.40000           78.90
## 7139                     Mauritania 1998         76.30000           62.50
## 7140                      Mauritius 1998         19.00000           71.00
## 7141                         Mexico 1998         24.30000           73.70
## 7142          Micronesia, Fed. Sts. 1998         43.30000           66.10
## 7143                        Moldova 1998         29.80000           68.50
## 7144                       Mongolia 1998         53.80000           62.10
## 7145                     Montenegro 1998         13.20000           73.10
## 7146                        Morocco 1998         45.80000           70.80
## 7147                     Mozambique 1998        126.60000           52.60
## 7148                        Namibia 1998         48.90000           56.70
## 7149                          Nepal 1998         66.20000           63.90
## 7150                    Netherlands 1998          5.30000           78.10
## 7151                  New Caledonia 1998               NA           72.95
## 7152                    New Zealand 1998          6.40000           78.00
## 7153                      Nicaragua 1998         37.00000           73.20
## 7154                          Niger 1998        107.70000           51.20
## 7155                        Nigeria 1998        117.50000           55.10
## 7156                         Norway 1998          4.10000           78.30
## 7157                           Oman 1998         16.40000           74.80
## 7158                       Pakistan 1998         91.40000           62.00
## 7159                         Panama 1998         22.70000           75.80
## 7160               Papua New Guinea 1998         59.30000           56.50
## 7161                       Paraguay 1998         29.30000           74.20
## 7162                           Peru 1998         34.30000           73.10
## 7163                    Philippines 1998         31.10000           69.00
## 7164                         Poland 1998          9.40000           73.00
## 7165                       Portugal 1998          6.30000           76.10
## 7166                    Puerto Rico 1998               NA           75.10
## 7167                          Qatar 1998         11.50000           74.60
## 7168                        Romania 1998         25.00000           69.80
## 7169                         Russia 1998         21.10000           67.20
## 7170                         Rwanda 1998        121.40000           45.60
## 7171                      St. Lucia 1998         15.80000           71.70
## 7172 St. Vincent and the Grenadines 1998         19.20000           69.80
## 7173                          Samoa 1998         19.70000           70.60
## 7174                   Saudi Arabia 1998         21.10000           76.30
## 7175                        Senegal 1998         70.90000           59.10
## 7176                         Serbia 1998         12.00000           71.50
## 7177                     Seychelles 1998         12.20000           70.40
## 7178                   Sierra Leone 1998        148.10000           49.70
## 7179                      Singapore 1998          3.60000           77.60
## 7180                Slovak Republic 1998         11.00000           72.80
## 7181                       Slovenia 1998          5.20000           75.40
## 7182                Solomon Islands 1998         27.90000           61.60
## 7183                   South Africa 1998         52.20000           58.90
## 7184                          Spain 1998          5.80000           78.80
## 7185                      Sri Lanka 1998         15.30000           72.00
## 7186                          Sudan 1998         70.90000           61.20
## 7187                       Suriname 1998         32.20000           70.10
## 7188                      Swaziland 1998         79.10000           53.50
## 7189                         Sweden 1998          3.50000           79.50
## 7190                    Switzerland 1998          4.80000           79.50
## 7191                          Syria 1998         21.60000           73.80
## 7192                     Tajikistan 1998         83.00000           64.90
## 7193                       Tanzania 1998         88.20000           53.70
## 7194                       Thailand 1998         20.80000           70.40
## 7195                    Timor-Leste 1998         94.40000           62.80
## 7196                           Togo 1998         79.60000           56.60
## 7197                          Tonga 1998         15.50000           69.70
## 7198            Trinidad and Tobago 1998         25.40000           69.60
## 7199                        Tunisia 1998         29.90000           74.30
## 7200                         Turkey 1998         36.30000           72.00
## 7201                   Turkmenistan 1998         69.20000           63.30
## 7202                         Uganda 1998         96.00000           48.70
## 7203                        Ukraine 1998         17.00000           68.10
## 7204           United Arab Emirates 1998         10.10000           72.80
## 7205                 United Kingdom 1998          5.80000           77.30
## 7206                  United States 1998          7.30000           76.80
## 7207                        Uruguay 1998         16.00000           74.00
## 7208                     Uzbekistan 1998         55.10000           67.10
## 7209                        Vanuatu 1998         24.30000           62.50
## 7210                      Venezuela 1998         20.00000           73.60
## 7211             West Bank and Gaza 1998         26.40000           74.50
## 7212                        Vietnam 1998         27.90000           71.50
## 7213                          Yemen 1998         74.40000           61.50
## 7214                         Zambia 1998        103.10000           45.40
## 7215                       Zimbabwe 1998         63.30000           50.90
## 7216                        Albania 1999         24.40000           74.20
## 7217                        Algeria 1999         34.40000           73.00
## 7218                         Angola 1999        129.50000           51.80
## 7219            Antigua and Barbuda 1999         14.50000           74.00
## 7220                      Argentina 1999         18.50000           73.90
## 7221                        Armenia 1999         27.90000           70.80
## 7222                          Aruba 1999               NA           73.73
## 7223                      Australia 1999          5.30000           79.40
## 7224                        Austria 1999          4.70000           78.00
## 7225                     Azerbaijan 1999         64.50000           65.90
## 7226                        Bahamas 1999         13.20000           70.10
## 7227                        Bahrain 1999         11.40000           74.20
## 7228                     Bangladesh 1999         67.40000           64.60
## 7229                       Barbados 1999         14.50000           74.20
## 7230                        Belarus 1999         12.60000           67.70
## 7231                        Belgium 1999          4.90000           77.70
## 7232                         Belize 1999         21.80000           69.30
## 7233                          Benin 1999         91.10000           57.10
## 7234                         Bhutan 1999         62.00000           66.50
## 7235                        Bolivia 1999         61.40000           66.90
## 7236         Bosnia and Herzegovina 1999          8.60000           75.30
## 7237                       Botswana 1999         53.10000           49.20
## 7238                         Brazil 1999         30.20000           70.30
## 7239                         Brunei 1999          7.60000           75.80
## 7240                       Bulgaria 1999         18.60000           71.40
## 7241                   Burkina Faso 1999         97.30000           52.20
## 7242                        Burundi 1999         95.70000           46.30
## 7243                       Cambodia 1999         84.50000           59.50
## 7244                       Cameroon 1999         93.80000           54.70
## 7245                         Canada 1999          5.30000           79.00
## 7246                     Cape Verde 1999         32.10000           68.20
## 7247       Central African Republic 1999        114.20000           45.50
## 7248                           Chad 1999        106.90000           51.70
## 7249                          Chile 1999          9.60000           76.90
## 7250                          China 1999         31.90000           69.60
## 7251                       Colombia 1999         21.90000           73.20
## 7252                        Comoros 1999         73.10000           61.40
## 7253               Congo, Dem. Rep. 1999        109.30000           54.00
## 7254                    Congo, Rep. 1999         76.50000           51.60
## 7255                     Costa Rica 1999         11.80000           77.50
## 7256                  Cote d'Ivoire 1999        101.00000           52.20
## 7257                        Croatia 1999          7.40000           73.80
## 7258                           Cuba 1999          6.90000           75.80
## 7259                         Cyprus 1999          5.90000           77.50
## 7260                 Czech Republic 1999          6.00000           74.70
## 7261                        Denmark 1999          4.70000           76.30
## 7262                       Djibouti 1999         81.20000           59.90
## 7263             Dominican Republic 1999         34.20000           73.20
## 7264                        Ecuador 1999         29.50000           73.10
## 7265                          Egypt 1999         39.10000           69.00
## 7266                    El Salvador 1999         28.40000           71.60
## 7267              Equatorial Guinea 1999        107.30000           52.00
## 7268                        Eritrea 1999         61.10000           52.20
## 7269                        Estonia 1999          9.60000           70.20
## 7270                       Ethiopia 1999         92.60000           50.60
## 7271                           Fiji 1999         21.00000           64.10
## 7272                        Finland 1999          3.60000           77.50
## 7273                         France 1999          4.50000           78.80
## 7274               French Polynesia 1999               NA           71.96
## 7275                          Gabon 1999         56.30000           59.70
## 7276                         Gambia 1999         64.80000           63.40
## 7277                        Georgia 1999         32.90000           71.40
## 7278                        Germany 1999          4.50000           77.80
## 7279                          Ghana 1999         66.70000           60.10
## 7280                         Greece 1999          7.40000           78.30
## 7281                      Greenland 1999               NA           67.50
## 7282                        Grenada 1999         13.80000           70.60
## 7283                      Guatemala 1999         41.40000           68.80
## 7284                         Guinea 1999        106.90000           54.00
## 7285                  Guinea-Bissau 1999        110.10000           52.50
## 7286                         Guyana 1999         37.90000           64.30
## 7287                          Haiti 1999         77.40000           58.00
## 7288                       Honduras 1999         31.80000           70.30
## 7289               Hong Kong, China 1999               NA           79.99
## 7290                        Hungary 1999         10.20000           71.30
## 7291                        Iceland 1999          3.30000           80.20
## 7292                          India 1999         68.60000           61.20
## 7293                      Indonesia 1999         42.90000           67.20
## 7294                           Iran 1999         30.10000           71.30
## 7295                           Iraq 1999         36.40000           65.90
## 7296                        Ireland 1999          6.10000           77.70
## 7297                         Israel 1999          5.90000           78.50
## 7298                          Italy 1999          5.00000           79.30
## 7299                        Jamaica 1999         19.30000           74.60
## 7300                          Japan 1999          3.40000           80.60
## 7301                         Jordan 1999         23.80000           73.20
## 7302                     Kazakhstan 1999         39.40000           65.00
## 7303                          Kenya 1999         68.40000           55.80
## 7304                       Kiribati 1999         54.60000           59.60
## 7305                    South Korea 1999          4.90000           75.80
## 7306                         Kuwait 1999         11.10000           77.30
## 7307                Kyrgyz Republic 1999         43.50000           65.80
## 7308                            Lao 1999         86.00000           55.50
## 7309                         Latvia 1999         15.70000           70.00
## 7310                        Lebanon 1999         18.10000           75.60
## 7311                        Lesotho 1999         83.00000           52.90
## 7312                        Liberia 1999        130.60000           55.20
## 7313                          Libya 1999         24.90000           74.90
## 7314                      Lithuania 1999         10.00000           71.80
## 7315                     Luxembourg 1999          4.10000           78.10
## 7316                   Macao, China 1999               NA           77.42
## 7317                 Macedonia, FYR 1999         15.00000           72.60
## 7318                     Madagascar 1999         73.20000           58.80
## 7319                         Malawi 1999        109.40000           45.10
## 7320                       Malaysia 1999          9.40000           73.10
## 7321                       Maldives 1999         39.40000           72.30
## 7322                           Mali 1999        118.90000           53.50
## 7323                          Malta 1999          7.10000           79.00
## 7324                     Mauritania 1999         76.20000           63.20
## 7325                      Mauritius 1999         17.80000           71.20
## 7326                         Mexico 1999         22.90000           74.10
## 7327          Micronesia, Fed. Sts. 1999         42.90000           66.30
## 7328                        Moldova 1999         28.10000           68.40
## 7329                       Mongolia 1999         51.00000           62.30
## 7330                     Montenegro 1999         13.00000           73.00
## 7331                        Morocco 1999         43.90000           71.10
## 7332                     Mozambique 1999        120.70000           52.60
## 7333                        Namibia 1999         49.20000           55.40
## 7334                          Nepal 1999         62.80000           64.60
## 7335                    Netherlands 1999          5.20000           78.00
## 7336                  New Caledonia 1999               NA           73.21
## 7337                    New Zealand 1999          6.20000           78.20
## 7338                      Nicaragua 1999         34.20000           75.60
## 7339                          Niger 1999        104.30000           51.80
## 7340                        Nigeria 1999        114.80000           55.20
## 7341                         Norway 1999          4.00000           78.50
## 7342                           Oman 1999         15.30000           75.10
## 7343                       Pakistan 1999         89.50000           62.10
## 7344                         Panama 1999         22.30000           76.20
## 7345               Papua New Guinea 1999         58.80000           57.40
## 7346                       Paraguay 1999         28.50000           74.30
## 7347                           Peru 1999         31.80000           73.90
## 7348                    Philippines 1999         30.50000           69.20
## 7349                         Poland 1999          8.60000           73.10
## 7350                       Portugal 1999          5.90000           76.40
## 7351                    Puerto Rico 1999               NA           75.20
## 7352                          Qatar 1999         11.10000           74.60
## 7353                        Romania 1999         24.20000           70.60
## 7354                         Russia 1999         20.50000           65.90
## 7355                         Rwanda 1999        115.20000           47.20
## 7356                      St. Lucia 1999         15.50000           71.80
## 7357 St. Vincent and the Grenadines 1999         19.20000           69.60
## 7358                          Samoa 1999         19.10000           70.70
## 7359                   Saudi Arabia 1999         20.20000           76.60
## 7360                        Senegal 1999         70.00000           59.20
## 7361                         Serbia 1999         11.40000           71.00
## 7362                     Seychelles 1999         12.20000           70.70
## 7363                   Sierra Leone 1999        145.80000           49.20
## 7364                      Singapore 1999          3.40000           78.00
## 7365                Slovak Republic 1999         10.60000           73.00
## 7366                       Slovenia 1999          4.80000           75.70
## 7367                Solomon Islands 1999         27.60000           61.70
## 7368                   South Africa 1999         53.20000           57.90
## 7369                          Spain 1999          5.60000           78.80
## 7370                      Sri Lanka 1999         14.60000           72.40
## 7371                          Sudan 1999         69.40000           62.00
## 7372                       Suriname 1999         31.20000           69.90
## 7373                      Swaziland 1999         81.80000           51.40
## 7374                         Sweden 1999          3.40000           79.50
## 7375                    Switzerland 1999          4.70000           79.80
## 7376                          Syria 1999         20.70000           74.10
## 7377                     Tajikistan 1999         78.80000           65.50
## 7378                       Tanzania 1999         84.50000           53.80
## 7379                       Thailand 1999         19.90000           70.50
## 7380                    Timor-Leste 1999         90.30000           62.30
## 7381                           Togo 1999         77.90000           56.80
## 7382                          Tonga 1999         15.30000           69.60
## 7383            Trinidad and Tobago 1999         25.40000           69.30
## 7384                        Tunisia 1999         28.10000           74.70
## 7385                         Turkey 1999         34.20000           71.50
## 7386                   Turkmenistan 1999         67.80000           63.50
## 7387                         Uganda 1999         93.40000           48.90
## 7388                        Ukraine 1999         16.50000           67.70
## 7389           United Arab Emirates 1999          9.80000           73.00
## 7390                 United Kingdom 1999          5.70000           77.50
## 7391                  United States 1999          7.20000           76.90
## 7392                        Uruguay 1999         15.30000           74.30
## 7393                     Uzbekistan 1999         54.00000           67.40
## 7394                        Vanuatu 1999         24.10000           62.00
## 7395                      Venezuela 1999         20.20000           70.20
## 7396             West Bank and Gaza 1999         25.60000           74.70
## 7397                        Vietnam 1999         27.00000           71.70
## 7398                          Yemen 1999         71.90000           62.00
## 7399                         Zambia 1999        100.90000           45.00
## 7400                       Zimbabwe 1999         63.50000           49.30
## 7401                        Albania 2000         23.20000           74.70
## 7402                        Algeria 2000         33.90000           73.30
## 7403                         Angola 2000        128.30000           52.30
## 7404            Antigua and Barbuda 2000         13.80000           73.80
## 7405                      Argentina 2000         18.00000           74.20
## 7406                        Armenia 2000         26.60000           71.30
## 7407                          Aruba 2000               NA           73.78
## 7408                      Australia 2000          5.10000           79.80
## 7409                        Austria 2000          4.60000           78.20
## 7410                     Azerbaijan 2000         60.60000           66.50
## 7411                        Bahamas 2000         13.00000           70.20
## 7412                        Bahrain 2000         10.90000           73.70
## 7413                     Bangladesh 2000         64.40000           64.90
## 7414                       Barbados 2000         14.80000           74.00
## 7415                        Belarus 2000         11.40000           68.10
## 7416                        Belgium 2000          4.80000           77.80
## 7417                         Belize 2000         21.10000           69.00
## 7418                          Benin 2000         89.30000           57.20
## 7419                         Bhutan 2000         59.00000           65.90
## 7420                        Bolivia 2000         58.80000           67.60
## 7421         Bosnia and Herzegovina 2000          7.90000           75.70
## 7422                       Botswana 2000         52.40000           47.60
## 7423                         Brazil 2000         28.10000           70.70
## 7424                         Brunei 2000          7.60000           75.90
## 7425                       Bulgaria 2000         17.90000           71.60
## 7426                   Burkina Faso 2000         96.20000           52.60
## 7427                        Burundi 2000         93.40000           46.70
## 7428                       Cambodia 2000         80.40000           60.00
## 7429                       Cameroon 2000         91.90000           54.30
## 7430                         Canada 2000          5.20000           79.20
## 7431                     Cape Verde 2000         29.10000           68.40
## 7432       Central African Republic 2000        113.60000           45.30
## 7433                           Chad 2000        105.70000           51.50
## 7434                          Chile 2000          9.20000           77.30
## 7435                          China 2000         30.20000           69.80
## 7436                       Colombia 2000         21.20000           73.30
## 7437                        Comoros 2000         72.70000           62.10
## 7438               Congo, Dem. Rep. 2000        107.40000           54.30
## 7439                    Congo, Rep. 2000         76.60000           52.50
## 7440                     Costa Rica 2000         11.20000           77.70
## 7441                  Cote d'Ivoire 2000         99.50000           52.00
## 7442                        Croatia 2000          7.10000           74.20
## 7443                           Cuba 2000          6.50000           76.20
## 7444                         Cyprus 2000          5.50000           77.70
## 7445                 Czech Republic 2000          5.60000           75.00
## 7446                        Denmark 2000          4.60000           77.10
## 7447                       Djibouti 2000         79.70000           60.00
## 7448             Dominican Republic 2000         33.30000           73.30
## 7449                        Ecuador 2000         28.40000           73.20
## 7450                          Egypt 2000         37.00000           69.70
## 7451                    El Salvador 2000         26.80000           71.90
## 7452              Equatorial Guinea 2000        104.80000           52.90
## 7453                        Eritrea 2000         58.30000           37.60
## 7454                        Estonia 2000          8.80000           70.40
## 7455                       Ethiopia 2000         89.50000           52.10
## 7456                           Fiji 2000         20.80000           64.20
## 7457                        Finland 2000          3.50000           77.80
## 7458                         France 2000          4.40000           79.10
## 7459               French Polynesia 2000               NA           72.31
## 7460                          Gabon 2000         55.60000           59.30
## 7461                         Gambia 2000         63.30000           63.60
## 7462                        Georgia 2000         31.20000           71.40
## 7463                        Germany 2000          4.40000           78.10
## 7464                          Ghana 2000         64.90000           60.00
## 7465                         Greece 2000          6.90000           78.60
## 7466                      Greenland 2000               NA           67.80
## 7467                        Grenada 2000         13.60000           70.50
## 7468                      Guatemala 2000         39.90000           68.80
## 7469                         Guinea 2000        103.10000           54.20
## 7470                  Guinea-Bissau 2000        106.90000           52.80
## 7471                         Guyana 2000         37.20000           64.20
## 7472                          Haiti 2000         75.00000           58.70
## 7473                       Honduras 2000         30.50000           70.50
## 7474               Hong Kong, China 2000               NA           80.36
## 7475                        Hungary 2000          9.70000           71.80
## 7476                        Iceland 2000          3.10000           80.50
## 7477                          India 2000         66.40000           61.50
## 7478                      Indonesia 2000         41.10000           67.50
## 7479                           Iran 2000         28.60000           71.40
## 7480                           Iraq 2000         35.80000           65.80
## 7481                        Ireland 2000          5.90000           77.80
## 7482                         Israel 2000          5.60000           78.60
## 7483                          Italy 2000          4.70000           79.60
## 7484                        Jamaica 2000         18.70000           74.40
## 7485                          Japan 2000          3.30000           81.00
## 7486                         Jordan 2000         23.20000           73.40
## 7487                     Kazakhstan 2000         37.50000           64.90
## 7488                          Kenya 2000         66.50000           55.60
## 7489                       Kiribati 2000         53.20000           59.80
## 7490                    South Korea 2000          5.20000           76.30
## 7491                         Kuwait 2000         10.90000           77.70
## 7492                Kyrgyz Republic 2000         41.60000           65.90
## 7493                            Lao 2000         83.20000           56.10
## 7494                         Latvia 2000         14.50000           70.50
## 7495                        Lebanon 2000         17.10000           75.90
## 7496                        Lesotho 2000         84.10000           50.70
## 7497                        Liberia 2000        123.00000           55.80
## 7498                          Libya 2000         24.20000           74.80
## 7499                      Lithuania 2000          9.60000           72.10
## 7500                     Luxembourg 2000          3.90000           78.50
## 7501                   Macao, China 2000               NA           77.63
## 7502                 Macedonia, FYR 2000         14.20000           72.90
## 7503                     Madagascar 2000         69.70000           59.10
## 7504                         Malawi 2000        103.50000           45.40
## 7505                       Malaysia 2000          8.70000           73.30
## 7506                       Maldives 2000         35.60000           73.00
## 7507                           Mali 2000        116.00000           53.50
## 7508                          Malta 2000          6.80000           79.20
## 7509                     Mauritania 2000         76.20000           63.80
## 7510                      Mauritius 2000         16.40000           71.40
## 7511                         Mexico 2000         21.60000           74.60
## 7512          Micronesia, Fed. Sts. 2000         42.20000           66.60
## 7513                        Moldova 2000         26.00000           68.60
## 7514                       Mongolia 2000         48.20000           62.50
## 7515                     Montenegro 2000         12.50000           73.30
## 7516                        Morocco 2000         42.20000           71.50
## 7517                     Mozambique 2000        115.00000           52.30
## 7518                        Namibia 2000         49.40000           54.00
## 7519                          Nepal 2000         59.60000           65.20
## 7520                    Netherlands 2000          5.10000           78.10
## 7521                  New Caledonia 2000               NA           73.46
## 7522                    New Zealand 2000          6.10000           78.40
## 7523                      Nicaragua 2000         32.60000           76.00
## 7524                          Niger 2000        101.10000           52.40
## 7525                        Nigeria 2000        112.00000           55.20
## 7526                         Norway 2000          4.00000           78.60
## 7527                           Oman 2000         14.30000           75.20
## 7528                       Pakistan 2000         87.70000           62.30
## 7529                         Panama 2000         21.90000           76.50
## 7530               Papua New Guinea 2000         58.30000           57.50
## 7531                       Paraguay 2000         27.70000           74.20
## 7532                           Peru 2000         29.60000           74.60
## 7533                    Philippines 2000         29.90000           69.10
## 7534                         Poland 2000          8.10000           73.80
## 7535                       Portugal 2000          5.50000           76.80
## 7536                    Puerto Rico 2000               NA           75.60
## 7537                          Qatar 2000         10.60000           74.70
## 7538                        Romania 2000         23.20000           71.10
## 7539                         Russia 2000         19.70000           65.10
## 7540                         Rwanda 2000        109.20000           49.20
## 7541                      St. Lucia 2000         15.20000           72.00
## 7542 St. Vincent and the Grenadines 2000         19.20000           69.10
## 7543                          Samoa 2000         18.50000           70.80
## 7544                   Saudi Arabia 2000         19.40000           76.80
## 7545                        Senegal 2000         68.50000           59.70
## 7546                         Serbia 2000         10.90000           72.10
## 7547                     Seychelles 2000         12.30000           70.90
## 7548                   Sierra Leone 2000        143.30000           51.50
## 7549                      Singapore 2000          3.10000           78.30
## 7550                Slovak Republic 2000         10.20000           73.30
## 7551                       Slovenia 2000          4.50000           76.10
## 7552                Solomon Islands 2000         27.40000           61.70
## 7553                   South Africa 2000         54.00000           56.40
## 7554                          Spain 2000          5.40000           79.20
## 7555                      Sri Lanka 2000         14.00000           72.40
## 7556                          Sudan 2000         67.80000           62.40
## 7557                       Suriname 2000         30.20000           69.70
## 7558                      Swaziland 2000         84.00000           48.80
## 7559                         Sweden 2000          3.40000           79.70
## 7560                    Switzerland 2000          4.60000           79.80
## 7561                          Syria 2000         19.80000           74.40
## 7562                     Tajikistan 2000         74.30000           65.80
## 7563                       Tanzania 2000         80.30000           54.30
## 7564                       Thailand 2000         19.10000           70.70
## 7565                    Timor-Leste 2000         86.30000           60.70
## 7566                           Togo 2000         76.20000           56.70
## 7567                          Tonga 2000         15.10000           69.60
## 7568            Trinidad and Tobago 2000         25.30000           69.50
## 7569                        Tunisia 2000         26.30000           75.00
## 7570                         Turkey 2000         32.10000           73.80
## 7571                   Turkmenistan 2000         66.10000           63.70
## 7572                         Uganda 2000         90.00000           49.10
## 7573                        Ukraine 2000         15.80000           67.30
## 7574           United Arab Emirates 2000          9.60000           73.30
## 7575                 United Kingdom 2000          5.60000           77.80
## 7576                  United States 2000          7.10000           76.90
## 7577                        Uruguay 2000         14.60000           74.60
## 7578                     Uzbekistan 2000         52.70000           67.60
## 7579                        Vanuatu 2000         23.80000           62.50
## 7580                      Venezuela 2000         18.50000           73.80
## 7581             West Bank and Gaza 2000         24.90000           74.40
## 7582                        Vietnam 2000         26.10000           72.00
## 7583                          Yemen 2000         69.00000           62.40
## 7584                         Zambia 2000         97.60000           44.80
## 7585                       Zimbabwe 2000         63.50000           47.90
## 7586                        Albania 2001         22.10000           75.10
## 7587                        Algeria 2001         33.30000           73.50
## 7588                         Angola 2001        126.90000           52.50
## 7589            Antigua and Barbuda 2001         13.00000           74.10
## 7590                      Argentina 2001         17.60000           74.30
## 7591                        Armenia 2001         25.30000           71.40
## 7592                          Aruba 2001               NA           73.85
## 7593                      Australia 2001          5.00000           80.10
## 7594                        Austria 2001          4.50000           78.60
## 7595                     Azerbaijan 2001         56.80000           67.20
## 7596                        Bahamas 2001         12.90000           70.30
## 7597                        Bahrain 2001         10.50000           74.30
## 7598                     Bangladesh 2001         61.40000           65.40
## 7599                       Barbados 2001         15.10000           74.40
## 7600                        Belarus 2001         10.30000           68.00
## 7601                        Belgium 2001          4.60000           78.00
## 7602                         Belize 2001         20.50000           68.80
## 7603                          Benin 2001         87.40000           57.40
## 7604                         Bhutan 2001         56.10000           67.50
## 7605                        Bolivia 2001         56.20000           68.30
## 7606         Bosnia and Herzegovina 2001          7.50000           76.20
## 7607                       Botswana 2001         51.40000           46.50
## 7608                         Brazil 2001         26.10000           71.10
## 7609                         Brunei 2001          7.50000           76.10
## 7610                       Bulgaria 2001         17.10000           71.80
## 7611                   Burkina Faso 2001         95.00000           53.20
## 7612                        Burundi 2001         91.00000           48.40
## 7613                       Cambodia 2001         74.70000           60.80
## 7614                       Cameroon 2001         89.30000           54.20
## 7615                         Canada 2001          5.30000           79.50
## 7616                     Cape Verde 2001         26.70000           68.60
## 7617       Central African Republic 2001        112.90000           45.20
## 7618                           Chad 2001        104.60000           51.70
## 7619                          Chile 2001          8.70000           77.40
## 7620                          China 2001         28.30000           70.00
## 7621                       Colombia 2001         20.60000           73.50
## 7622                        Comoros 2001         72.50000           63.00
## 7623               Congo, Dem. Rep. 2001        105.30000           54.50
## 7624                    Congo, Rep. 2001         75.50000           53.50
## 7625                     Costa Rica 2001         10.50000           78.00
## 7626                  Cote d'Ivoire 2001         97.70000           52.10
## 7627                        Croatia 2001          6.90000           74.60
## 7628                           Cuba 2001          6.10000           76.40
## 7629                         Cyprus 2001          5.10000           78.50
## 7630                 Czech Republic 2001          5.30000           75.30
## 7631                        Denmark 2001          4.50000           77.20
## 7632                       Djibouti 2001         78.10000           60.10
## 7633             Dominican Republic 2001         32.50000           73.40
## 7634                        Ecuador 2001         27.40000           73.40
## 7635                          Egypt 2001         35.10000           69.70
## 7636                    El Salvador 2001         25.50000           71.70
## 7637              Equatorial Guinea 2001        102.30000           54.00
## 7638                        Eritrea 2001         55.80000           59.90
## 7639                        Estonia 2001          8.20000           70.00
## 7640                       Ethiopia 2001         86.20000           52.70
## 7641                           Fiji 2001         20.50000           64.40
## 7642                        Finland 2001          3.40000           78.10
## 7643                         France 2001          4.40000           79.20
## 7644               French Polynesia 2001               NA           72.67
## 7645                          Gabon 2001         54.70000           59.00
## 7646                         Gambia 2001         62.00000           63.90
## 7647                        Georgia 2001         29.30000           71.70
## 7648                        Germany 2001          4.30000           78.40
## 7649                          Ghana 2001         63.00000           59.90
## 7650                         Greece 2001          6.50000           78.90
## 7651                      Greenland 2001               NA           68.00
## 7652                        Grenada 2001         13.30000           70.30
## 7653                      Guatemala 2001         38.50000           69.30
## 7654                         Guinea 2001         99.20000           54.40
## 7655                  Guinea-Bissau 2001        103.80000           52.70
## 7656                         Guyana 2001         36.50000           63.90
## 7657                          Haiti 2001         72.80000           59.20
## 7658                       Honduras 2001         29.40000           70.60
## 7659               Hong Kong, China 2001               NA           80.73
## 7660                        Hungary 2001          9.10000           72.30
## 7661                        Iceland 2001          3.00000           80.80
## 7662                          India 2001         64.20000           61.90
## 7663                      Indonesia 2001         39.40000           67.80
## 7664                           Iran 2001         27.10000           71.30
## 7665                           Iraq 2001         35.20000           66.40
## 7666                        Ireland 2001          5.80000           78.40
## 7667                         Israel 2001          5.40000           78.80
## 7668                          Italy 2001          4.40000           79.80
## 7669                        Jamaica 2001         18.20000           74.20
## 7670                          Japan 2001          3.10000           81.30
## 7671                         Jordan 2001         22.60000           73.60
## 7672                     Kazakhstan 2001         35.70000           65.10
## 7673                          Kenya 2001         64.50000           55.60
## 7674                       Kiribati 2001         51.90000           60.10
## 7675                    South Korea 2001          5.50000           76.70
## 7676                         Kuwait 2001         10.70000           77.60
## 7677                Kyrgyz Republic 2001         39.80000           66.00
## 7678                            Lao 2001         80.50000           56.60
## 7679                         Latvia 2001         13.60000           70.00
## 7680                        Lebanon 2001         16.10000           76.30
## 7681                        Lesotho 2001         85.20000           48.90
## 7682                        Liberia 2001        115.60000           56.30
## 7683                          Libya 2001         23.40000           75.00
## 7684                      Lithuania 2001          9.20000           71.60
## 7685                     Luxembourg 2001          3.70000           78.70
## 7686                   Macao, China 2001               NA           77.83
## 7687                 Macedonia, FYR 2001         13.50000           73.00
## 7688                     Madagascar 2001         66.20000           59.60
## 7689                         Malawi 2001         96.50000           45.90
## 7690                       Malaysia 2001          8.10000           73.60
## 7691                       Maldives 2001         31.80000           73.70
## 7692                           Mali 2001        112.60000           54.10
## 7693                          Malta 2001          6.60000           79.40
## 7694                     Mauritania 2001         76.00000           64.20
## 7695                      Mauritius 2001         15.10000           71.60
## 7696                         Mexico 2001         20.40000           74.90
## 7697          Micronesia, Fed. Sts. 2001         41.50000           66.80
## 7698                        Moldova 2001         23.70000           69.20
## 7699                       Mongolia 2001         45.30000           62.70
## 7700                     Montenegro 2001         12.00000           73.50
## 7701                        Morocco 2001         40.50000           71.80
## 7702                     Mozambique 2001        109.30000           52.80
## 7703                        Namibia 2001         49.20000           53.40
## 7704                          Nepal 2001         56.70000           65.90
## 7705                    Netherlands 2001          5.00000           78.30
## 7706                  New Caledonia 2001               NA           73.70
## 7707                    New Zealand 2001          5.90000           78.60
## 7708                      Nicaragua 2001         31.20000           76.20
## 7709                          Niger 2001         97.70000           52.90
## 7710                        Nigeria 2001        109.00000           55.40
## 7711                         Norway 2001          3.80000           78.90
## 7712                           Oman 2001         13.30000           75.40
## 7713                       Pakistan 2001         86.00000           62.50
## 7714                         Panama 2001         21.40000           76.70
## 7715               Papua New Guinea 2001         57.80000           57.60
## 7716                       Paraguay 2001         26.90000           74.20
## 7717                           Peru 2001         27.60000           75.20
## 7718                    Philippines 2001         29.40000           69.00
## 7719                         Poland 2001          7.60000           74.20
## 7720                       Portugal 2001          5.20000           76.80
## 7721                    Puerto Rico 2001               NA           75.80
## 7722                          Qatar 2001         10.20000           75.00
## 7723                        Romania 2001         22.40000           71.10
## 7724                         Russia 2001         18.80000           65.10
## 7725                         Rwanda 2001        102.30000           51.00
## 7726                      St. Lucia 2001         15.10000           72.10
## 7727 St. Vincent and the Grenadines 2001         19.20000           69.70
## 7728                          Samoa 2001         17.90000           71.00
## 7729                   Saudi Arabia 2001         18.70000           77.10
## 7730                        Senegal 2001         66.40000           60.20
## 7731                         Serbia 2001         10.60000           72.40
## 7732                     Seychelles 2001         12.30000           71.10
## 7733                   Sierra Leone 2001        140.50000           51.80
## 7734                      Singapore 2001          2.90000           78.60
## 7735                Slovak Republic 2001          9.80000           73.60
## 7736                       Slovenia 2001          4.30000           76.30
## 7737                Solomon Islands 2001         27.20000           61.70
## 7738                   South Africa 2001         54.50000           55.90
## 7739                          Spain 2001          5.30000           79.50
## 7740                      Sri Lanka 2001         13.60000           73.30
## 7741                          Sudan 2001         66.20000           62.80
## 7742                       Suriname 2001         29.20000           69.50
## 7743                      Swaziland 2001         85.40000           46.60
## 7744                         Sweden 2001          3.40000           79.80
## 7745                    Switzerland 2001          4.70000           80.20
## 7746                          Syria 2001         19.00000           74.60
## 7747                     Tajikistan 2001         69.70000           66.10
## 7748                       Tanzania 2001         75.90000           54.80
## 7749                       Thailand 2001         18.30000           71.20
## 7750                    Timor-Leste 2001         82.40000           64.40
## 7751                           Togo 2001         74.40000           56.70
## 7752                          Tonga 2001         14.80000           69.60
## 7753            Trinidad and Tobago 2001         25.30000           69.80
## 7754                        Tunisia 2001         24.70000           75.30
## 7755                         Turkey 2001         30.20000           74.40
## 7756                   Turkmenistan 2001         64.40000           64.10
## 7757                         Uganda 2001         86.00000           49.70
## 7758                        Ukraine 2001         15.10000           67.50
## 7759           United Arab Emirates 2001          9.30000           73.60
## 7760                 United Kingdom 2001          5.40000           78.00
## 7761                  United States 2001          7.00000           76.90
## 7762                        Uruguay 2001         14.10000           74.80
## 7763                     Uzbekistan 2001         51.40000           67.80
## 7764                        Vanuatu 2001         23.60000           62.50
## 7765                      Venezuela 2001         17.90000           73.80
## 7766             West Bank and Gaza 2001         24.20000           74.70
## 7767                        Vietnam 2001         25.30000           72.20
## 7768                          Yemen 2001         66.10000           62.80
## 7769                         Zambia 2001         92.70000           44.90
## 7770                       Zimbabwe 2001         63.20000           47.00
## 7771                        Albania 2002         21.00000           75.50
## 7772                        Algeria 2002         32.40000           73.80
## 7773                         Angola 2002        125.50000           53.30
## 7774            Antigua and Barbuda 2002         12.30000           74.30
## 7775                      Argentina 2002         17.10000           74.30
## 7776                        Armenia 2002         24.20000           71.60
## 7777                          Aruba 2002               NA           73.94
## 7778                      Australia 2002          5.00000           80.30
## 7779                        Austria 2002          4.40000           78.80
## 7780                     Azerbaijan 2002         53.10000           67.60
## 7781                        Bahamas 2002         12.80000           70.40
## 7782                        Bahrain 2002         10.20000           74.80
## 7783                     Bangladesh 2002         58.60000           65.80
## 7784                       Barbados 2002         15.30000           74.60
## 7785                        Belarus 2002          9.30000           67.90
## 7786                        Belgium 2002          4.40000           78.20
## 7787                         Belize 2002         19.90000           69.30
## 7788                          Benin 2002         85.20000           57.70
## 7789                         Bhutan 2002         53.30000           68.10
## 7790                        Bolivia 2002         53.70000           68.70
## 7791         Bosnia and Herzegovina 2002          7.20000           76.40
## 7792                       Botswana 2002         50.30000           45.60
## 7793                         Brazil 2002         24.30000           71.40
## 7794                         Brunei 2002          7.50000           76.30
## 7795                       Bulgaria 2002         16.30000           72.10
## 7796                   Burkina Faso 2002         93.40000           53.80
## 7797                        Burundi 2002         88.60000           49.80
## 7798                       Cambodia 2002         68.30000           61.60
## 7799                       Cameroon 2002         86.20000           54.20
## 7800                         Canada 2002          5.30000           79.60
## 7801                     Cape Verde 2002         24.90000           68.70
## 7802       Central African Republic 2002        112.10000           45.20
## 7803                           Chad 2002        103.40000           51.90
## 7804                          Chile 2002          8.30000           77.70
## 7805                          China 2002         26.20000           70.20
## 7806                       Colombia 2002         20.00000           73.70
## 7807                        Comoros 2002         72.50000           63.80
## 7808               Congo, Dem. Rep. 2002        103.10000           54.70
## 7809                    Congo, Rep. 2002         73.30000           54.30
## 7810                     Costa Rica 2002         10.00000           78.20
## 7811                  Cote d'Ivoire 2002         95.70000           52.30
## 7812                        Croatia 2002          6.60000           74.90
## 7813                           Cuba 2002          5.90000           76.80
## 7814                         Cyprus 2002          4.70000           78.70
## 7815                 Czech Republic 2002          5.10000           75.40
## 7816                        Denmark 2002          4.50000           77.20
## 7817                       Djibouti 2002         76.40000           60.20
## 7818             Dominican Republic 2002         31.80000           73.50
## 7819                        Ecuador 2002         26.50000           73.60
## 7820                          Egypt 2002         33.40000           69.80
## 7821                    El Salvador 2002         24.20000           72.50
## 7822              Equatorial Guinea 2002         99.70000           54.90
## 7823                        Eritrea 2002         53.40000           60.00
## 7824                        Estonia 2002          7.50000           70.90
## 7825                       Ethiopia 2002         82.50000           53.60
## 7826                           Fiji 2002         20.30000           64.50
## 7827                        Finland 2002          3.40000           78.30
## 7828                         France 2002          4.20000           79.40
## 7829               French Polynesia 2002               NA           73.03
## 7830                          Gabon 2002         53.70000           59.40
## 7831                         Gambia 2002         60.60000           63.80
## 7832                        Georgia 2002         27.40000           71.60
## 7833                        Germany 2002          4.20000           78.60
## 7834                          Ghana 2002         61.20000           60.00
## 7835                         Greece 2002          6.00000           79.10
## 7836                      Greenland 2002               NA           68.30
## 7837                        Grenada 2002         13.10000           70.20
## 7838                      Guatemala 2002         37.10000           70.00
## 7839                         Guinea 2002         95.40000           54.70
## 7840                  Guinea-Bissau 2002        100.50000           52.70
## 7841                         Guyana 2002         35.80000           63.50
## 7842                          Haiti 2002         70.70000           59.60
## 7843                       Honduras 2002         28.20000           70.70
## 7844               Hong Kong, China 2002               NA           81.08
## 7845                        Hungary 2002          8.60000           72.60
## 7846                        Iceland 2002          2.80000           81.00
## 7847                          India 2002         62.00000           62.30
## 7848                      Indonesia 2002         37.80000           68.00
## 7849                           Iran 2002         25.60000           71.30
## 7850                           Iraq 2002         34.60000           66.10
## 7851                        Ireland 2002          5.40000           78.80
## 7852                         Israel 2002          5.20000           78.60
## 7853                          Italy 2002          4.30000           80.10
## 7854                        Jamaica 2002         17.80000           74.50
## 7855                          Japan 2002          3.00000           81.60
## 7856                         Jordan 2002         22.10000           73.80
## 7857                     Kazakhstan 2002         33.90000           65.40
## 7858                          Kenya 2002         62.20000           55.70
## 7859                       Kiribati 2002         50.90000           60.20
## 7860                    South Korea 2002          5.60000           77.10
## 7861                         Kuwait 2002         10.60000           78.20
## 7862                Kyrgyz Republic 2002         38.20000           65.90
## 7863                            Lao 2002         77.80000           57.60
## 7864                         Latvia 2002         12.80000           70.40
## 7865                        Lebanon 2002         15.10000           76.60
## 7866                        Lesotho 2002         86.30000           47.00
## 7867                        Liberia 2002        108.20000           55.40
## 7868                          Libya 2002         22.70000           75.00
## 7869                      Lithuania 2002          8.90000           72.10
## 7870                     Luxembourg 2002          3.40000           79.00
## 7871                   Macao, China 2002               NA           78.04
## 7872                 Macedonia, FYR 2002         12.80000           73.30
## 7873                     Madagascar 2002         62.90000           59.80
## 7874                         Malawi 2002         88.80000           46.40
## 7875                       Malaysia 2002          7.60000           73.80
## 7876                       Maldives 2002         28.30000           74.40
## 7877                           Mali 2002        108.80000           54.60
## 7878                          Malta 2002          6.40000           79.80
## 7879                     Mauritania 2002         75.90000           64.90
## 7880                      Mauritius 2002         14.20000           71.70
## 7881                         Mexico 2002         19.30000           74.90
## 7882          Micronesia, Fed. Sts. 2002         40.60000           66.00
## 7883                        Moldova 2002         21.50000           69.60
## 7884                       Mongolia 2002         42.50000           62.90
## 7885                     Montenegro 2002         11.50000           74.00
## 7886                        Morocco 2002         38.90000           72.00
## 7887                     Mozambique 2002        104.00000           52.70
## 7888                        Namibia 2002         48.70000           52.70
## 7889                          Nepal 2002         53.80000           65.90
## 7890                    Netherlands 2002          4.90000           78.50
## 7891                  New Caledonia 2002               NA           73.94
## 7892                    New Zealand 2002          5.80000           78.90
## 7893                      Nicaragua 2002         29.80000           76.30
## 7894                          Niger 2002         94.10000           53.70
## 7895                        Nigeria 2002        105.90000           55.30
## 7896                         Norway 2002          3.60000           79.10
## 7897                           Oman 2002         12.50000           75.40
## 7898                       Pakistan 2002         84.40000           62.60
## 7899                         Panama 2002         20.90000           76.90
## 7900               Papua New Guinea 2002         57.30000           57.60
## 7901                       Paraguay 2002         26.10000           74.10
## 7902                           Peru 2002         25.70000           75.70
## 7903                    Philippines 2002         28.90000           69.00
## 7904                         Poland 2002          7.30000           74.60
## 7905                       Portugal 2002          4.70000           77.30
## 7906                    Puerto Rico 2002               NA           76.20
## 7907                          Qatar 2002          9.80000           75.00
## 7908                        Romania 2002         21.60000           71.20
## 7909                         Russia 2002         17.70000           64.90
## 7910                         Rwanda 2002         94.10000           53.50
## 7911                      St. Lucia 2002         14.90000           72.30
## 7912 St. Vincent and the Grenadines 2002         19.20000           69.70
## 7913                          Samoa 2002         17.50000           71.20
## 7914                   Saudi Arabia 2002         18.20000           77.20
## 7915                        Senegal 2002         63.90000           60.40
## 7916                         Serbia 2002         10.10000           72.50
## 7917                     Seychelles 2002         12.30000           71.30
## 7918                   Sierra Leone 2002        137.70000           51.60
## 7919                      Singapore 2002          2.60000           78.90
## 7920                Slovak Republic 2002          9.50000           73.80
## 7921                       Slovenia 2002          4.10000           76.60
## 7922                Solomon Islands 2002         27.20000           61.70
## 7923                   South Africa 2002         54.70000           54.80
## 7924                          Spain 2002          5.20000           79.60
## 7925                      Sri Lanka 2002         13.20000           73.70
## 7926                          Sudan 2002         64.60000           63.30
## 7927                       Suriname 2002         28.20000           69.40
## 7928                      Swaziland 2002         85.90000           45.10
## 7929                         Sweden 2002          3.30000           80.00
## 7930                    Switzerland 2002          4.60000           80.40
## 7931                          Syria 2002         18.20000           74.90
## 7932                     Tajikistan 2002         65.30000           66.50
## 7933                       Tanzania 2002         71.40000           55.40
## 7934                       Thailand 2002         17.50000           71.70
## 7935                    Timor-Leste 2002         78.60000           65.30
## 7936                           Togo 2002         72.60000           56.70
## 7937                          Tonga 2002         14.60000           69.70
## 7938            Trinidad and Tobago 2002         25.10000           69.90
## 7939                        Tunisia 2002         23.30000           75.50
## 7940                         Turkey 2002         28.30000           75.10
## 7941                   Turkmenistan 2002         62.70000           64.40
## 7942                         Uganda 2002         81.60000           50.30
## 7943                        Ukraine 2002         14.30000           67.50
## 7944           United Arab Emirates 2002          9.10000           73.80
## 7945                 United Kingdom 2002          5.30000           78.20
## 7946                  United States 2002          6.90000           77.10
## 7947                        Uruguay 2002         13.70000           75.00
## 7948                     Uzbekistan 2002         50.00000           67.90
## 7949                        Vanuatu 2002         23.40000           62.50
## 7950                      Venezuela 2002         17.40000           73.80
## 7951             West Bank and Gaza 2002         23.60000           74.40
## 7952                        Vietnam 2002         24.60000           72.50
## 7953                          Yemen 2002         63.00000           63.30
## 7954                         Zambia 2002         86.50000           45.10
## 7955                       Zimbabwe 2002         62.70000           45.90
## 7956                        Albania 2003         20.00000           75.70
## 7957                        Algeria 2003         31.30000           73.90
## 7958                         Angola 2003        124.10000           53.90
## 7959            Antigua and Barbuda 2003         11.70000           74.50
## 7960                      Argentina 2003         16.60000           74.50
## 7961                        Armenia 2003         23.00000           71.50
## 7962                          Aruba 2003               NA           74.05
## 7963                      Australia 2003          4.90000           80.60
## 7964                        Austria 2003          4.30000           79.00
## 7965                     Azerbaijan 2003         49.70000           67.60
## 7966                        Bahamas 2003         12.70000           71.10
## 7967                        Bahrain 2003          9.90000           75.30
## 7968                     Bangladesh 2003         55.90000           66.30
## 7969                       Barbados 2003         15.30000           74.80
## 7970                        Belarus 2003          8.60000           68.20
## 7971                        Belgium 2003          4.20000           78.50
## 7972                         Belize 2003         19.40000           69.60
## 7973                          Benin 2003         83.00000           57.90
## 7974                         Bhutan 2003         50.60000           68.50
## 7975                        Bolivia 2003         51.20000           69.30
## 7976         Bosnia and Herzegovina 2003          7.00000           76.70
## 7977                       Botswana 2003         49.80000           45.70
## 7978                         Brazil 2003         22.50000           71.70
## 7979                         Brunei 2003          7.40000           76.50
## 7980                       Bulgaria 2003         15.50000           72.30
## 7981                   Burkina Faso 2003         91.40000           54.50
## 7982                        Burundi 2003         85.80000           51.30
## 7983                       Cambodia 2003         62.30000           62.40
## 7984                       Cameroon 2003         83.10000           54.30
## 7985                         Canada 2003          5.20000           79.80
## 7986                     Cape Verde 2003         23.80000           68.90
## 7987       Central African Republic 2003        111.30000           45.20
## 7988                           Chad 2003        102.30000           52.10
## 7989                          Chile 2003          8.00000           77.80
## 7990                          China 2003         24.20000           70.90
## 7991                       Colombia 2003         19.40000           74.50
## 7992                        Comoros 2003         72.20000           64.80
## 7993               Congo, Dem. Rep. 2003        100.90000           54.90
## 7994                    Congo, Rep. 2003         70.00000           55.00
## 7995                     Costa Rica 2003          9.50000           78.40
## 7996                  Cote d'Ivoire 2003         93.60000           52.60
## 7997                        Croatia 2003          6.30000           75.10
## 7998                           Cuba 2003          5.60000           76.90
## 7999                         Cyprus 2003          4.40000           79.00
## 8000                 Czech Republic 2003          4.80000           75.60
## 8001                        Denmark 2003          4.40000           77.60
## 8002                       Djibouti 2003         74.60000           60.30
## 8003             Dominican Republic 2003         31.20000           73.50
## 8004                        Ecuador 2003         25.70000           73.70
## 8005                          Egypt 2003         31.90000           69.80
## 8006                    El Salvador 2003         23.10000           72.60
## 8007              Equatorial Guinea 2003         97.10000           55.30
## 8008                        Eritrea 2003         51.20000           59.90
## 8009                        Estonia 2003          6.90000           71.50
## 8010                       Ethiopia 2003         78.40000           54.30
## 8011                           Fiji 2003         20.10000           64.60
## 8012                        Finland 2003          3.30000           78.50
## 8013                         France 2003          4.00000           79.60
## 8014               French Polynesia 2003               NA           73.40
## 8015                          Gabon 2003         52.60000           59.40
## 8016                         Gambia 2003         59.30000           64.40
## 8017                        Georgia 2003         25.50000           71.70
## 8018                        Germany 2003          4.10000           78.80
## 8019                          Ghana 2003         59.60000           60.20
## 8020                         Greece 2003          5.50000           79.30
## 8021                      Greenland 2003               NA           68.50
## 8022                        Grenada 2003         12.90000           70.20
## 8023                      Guatemala 2003         35.90000           70.10
## 8024                         Guinea 2003         91.70000           55.10
## 8025                  Guinea-Bissau 2003         97.10000           52.80
## 8026                         Guyana 2003         35.30000           63.70
## 8027                          Haiti 2003         68.90000           59.70
## 8028                       Honduras 2003         27.10000           70.80
## 8029               Hong Kong, China 2003               NA           81.40
## 8030                        Hungary 2003          8.00000           72.70
## 8031                        Iceland 2003          2.70000           81.30
## 8032                          India 2003         59.90000           62.80
## 8033                      Indonesia 2003         36.30000           68.20
## 8034                           Iran 2003         24.30000           70.10
## 8035                           Iraq 2003         34.10000           66.10
## 8036                        Ireland 2003          5.10000           79.10
## 8037                         Israel 2003          4.90000           79.10
## 8038                          Italy 2003          4.00000           80.10
## 8039                        Jamaica 2003         17.40000           74.80
## 8040                          Japan 2003          2.90000           81.70
## 8041                         Jordan 2003         21.50000           74.00
## 8042                     Kazakhstan 2003         32.10000           65.30
## 8043                          Kenya 2003         59.70000           55.80
## 8044                       Kiribati 2003         50.10000           60.40
## 8045                    South Korea 2003          5.40000           77.70
## 8046                         Kuwait 2003         10.40000           78.50
## 8047                Kyrgyz Republic 2003         36.70000           66.00
## 8048                            Lao 2003         75.20000           58.40
## 8049                         Latvia 2003         12.20000           70.80
## 8050                        Lebanon 2003         14.10000           76.90
## 8051                        Lesotho 2003         87.30000           45.40
## 8052                        Liberia 2003        101.00000           55.20
## 8053                          Libya 2003         21.90000           75.10
## 8054                      Lithuania 2003          8.70000           72.10
## 8055                     Luxembourg 2003          3.30000           79.10
## 8056                   Macao, China 2003               NA           78.25
## 8057                 Macedonia, FYR 2003         12.60000           73.40
## 8058                     Madagascar 2003         59.70000           60.10
## 8059                         Malawi 2003         81.60000           47.00
## 8060                       Malaysia 2003          7.30000           73.90
## 8061                       Maldives 2003         24.90000           75.30
## 8062                           Mali 2003        104.70000           55.50
## 8063                          Malta 2003          6.20000           80.10
## 8064                     Mauritania 2003         75.70000           65.50
## 8065                      Mauritius 2003         13.80000           71.90
## 8066                         Mexico 2003         18.20000           74.90
## 8067          Micronesia, Fed. Sts. 2003         39.60000           67.30
## 8068                        Moldova 2003         19.50000           69.90
## 8069                       Mongolia 2003         39.80000           63.10
## 8070                     Montenegro 2003         10.90000           74.50
## 8071                        Morocco 2003         37.40000           72.30
## 8072                     Mozambique 2003         99.10000           52.90
## 8073                        Namibia 2003         48.10000           52.40
## 8074                          Nepal 2003         51.20000           66.80
## 8075                    Netherlands 2003          4.70000           78.70
## 8076                  New Caledonia 2003               NA           74.17
## 8077                    New Zealand 2003          5.70000           79.10
## 8078                      Nicaragua 2003         28.60000           76.30
## 8079                          Niger 2003         90.20000           54.40
## 8080                        Nigeria 2003        102.90000           55.60
## 8081                         Norway 2003          3.50000           79.50
## 8082                           Oman 2003         11.90000           75.60
## 8083                       Pakistan 2003         82.90000           62.80
## 8084                         Panama 2003         20.40000           77.00
## 8085               Papua New Guinea 2003         56.70000           57.70
## 8086                       Paraguay 2003         25.30000           74.10
## 8087                           Peru 2003         24.10000           76.20
## 8088                    Philippines 2003         28.40000           69.10
## 8089                         Poland 2003          7.00000           74.90
## 8090                       Portugal 2003          4.30000           77.60
## 8091                    Puerto Rico 2003               NA           76.50
## 8092                          Qatar 2003          9.50000           75.20
## 8093                        Romania 2003         20.60000           71.60
## 8094                         Russia 2003         16.60000           64.70
## 8095                         Rwanda 2003         86.00000           55.50
## 8096                      St. Lucia 2003         14.90000           72.50
## 8097 St. Vincent and the Grenadines 2003         19.20000           70.10
## 8098                          Samoa 2003         17.10000           71.40
## 8099                   Saudi Arabia 2003         17.60000           77.40
## 8100                        Senegal 2003         61.30000           61.30
## 8101                         Serbia 2003          9.20000           72.70
## 8102                     Seychelles 2003         12.30000           71.50
## 8103                   Sierra Leone 2003        134.60000           51.70
## 8104                      Singapore 2003          2.50000           79.30
## 8105                Slovak Republic 2003          9.10000           73.90
## 8106                       Slovenia 2003          3.90000           76.80
## 8107                Solomon Islands 2003         27.20000           61.70
## 8108                   South Africa 2003         54.10000           53.70
## 8109                          Spain 2003          5.10000           79.60
## 8110                      Sri Lanka 2003         13.00000           74.00
## 8111                          Sudan 2003         63.00000           63.50
## 8112                       Suriname 2003         27.40000           69.50
## 8113                      Swaziland 2003         85.90000           44.00
## 8114                         Sweden 2003          3.20000           80.20
## 8115                    Switzerland 2003          4.40000           80.60
## 8116                          Syria 2003         17.50000           75.10
## 8117                     Tajikistan 2003         61.00000           66.90
## 8118                       Tanzania 2003         67.00000           55.90
## 8119                       Thailand 2003         16.70000           72.10
## 8120                    Timor-Leste 2003         74.80000           65.70
## 8121                           Togo 2003         70.80000           56.40
## 8122                          Tonga 2003         14.40000           69.60
## 8123            Trinidad and Tobago 2003         24.70000           70.40
## 8124                        Tunisia 2003         22.00000           75.70
## 8125                         Turkey 2003         26.50000           75.10
## 8126                   Turkmenistan 2003         61.10000           64.80
## 8127                         Uganda 2003         76.90000           51.20
## 8128                        Ukraine 2003         13.60000           67.70
## 8129           United Arab Emirates 2003          8.90000           74.10
## 8130                 United Kingdom 2003          5.30000           78.40
## 8131                  United States 2003          6.80000           77.30
## 8132                        Uruguay 2003         13.30000           75.00
## 8133                     Uzbekistan 2003         48.60000           68.10
## 8134                        Vanuatu 2003         23.40000           62.50
## 8135                      Venezuela 2003         16.90000           73.50
## 8136             West Bank and Gaza 2003         23.10000           74.40
## 8137                        Vietnam 2003         23.90000           72.80
## 8138                          Yemen 2003         60.10000           63.70
## 8139                         Zambia 2003         80.00000           45.30
## 8140                       Zimbabwe 2003         61.90000           45.30
## 8141                        Albania 2004         19.10000           75.90
## 8142                        Algeria 2004         30.10000           74.40
## 8143                         Angola 2004        122.80000           54.50
## 8144            Antigua and Barbuda 2004         11.00000           74.60
## 8145                      Argentina 2004         16.00000           75.00
## 8146                        Armenia 2004         21.90000           71.80
## 8147                          Aruba 2004               NA           74.18
## 8148                      Australia 2004          4.90000           80.90
## 8149                        Austria 2004          4.10000           79.40
## 8150                     Azerbaijan 2004         46.70000           67.80
## 8151                        Bahamas 2004         12.70000           71.70
## 8152                        Bahrain 2004          9.60000           75.70
## 8153                     Bangladesh 2004         53.40000           66.80
## 8154                       Barbados 2004         15.30000           74.90
## 8155                        Belarus 2004          7.90000           68.50
## 8156                        Belgium 2004          4.20000           79.00
## 8157                         Belize 2004         18.90000           69.90
## 8158                          Benin 2004         80.80000           58.20
## 8159                         Bhutan 2004         47.90000           68.90
## 8160                        Bolivia 2004         48.80000           69.80
## 8161         Bosnia and Herzegovina 2004          7.00000           76.90
## 8162                       Botswana 2004         49.10000           46.90
## 8163                         Brazil 2004         21.00000           72.00
## 8164                         Brunei 2004          7.40000           76.70
## 8165                       Bulgaria 2004         14.60000           72.50
## 8166                   Burkina Faso 2004         88.90000           55.10
## 8167                        Burundi 2004         82.90000           53.00
## 8168                       Cambodia 2004         57.40000           63.20
## 8169                       Cameroon 2004         80.30000           54.40
## 8170                         Canada 2004          5.20000           80.10
## 8171                     Cape Verde 2004         23.30000           69.10
## 8172       Central African Republic 2004        110.40000           45.40
## 8173                           Chad 2004        101.30000           52.60
## 8174                          Chile 2004          7.90000           78.00
## 8175                          China 2004         22.20000           71.40
## 8176                       Colombia 2004         18.90000           74.70
## 8177                        Comoros 2004         71.60000           65.50
## 8178               Congo, Dem. Rep. 2004         98.70000           55.90
## 8179                    Congo, Rep. 2004         66.10000           55.80
## 8180                     Costa Rica 2004          9.20000           78.70
## 8181                  Cote d'Ivoire 2004         91.40000           52.80
## 8182                        Croatia 2004          6.10000           75.30
## 8183                           Cuba 2004          5.40000           77.00
## 8184                         Cyprus 2004          4.20000           79.10
## 8185                 Czech Republic 2004          4.60000           75.90
## 8186                        Denmark 2004          4.20000           77.80
## 8187                       Djibouti 2004         72.90000           60.40
## 8188             Dominican Republic 2004         30.60000           73.10
## 8189                        Ecuador 2004         25.00000           73.90
## 8190                          Egypt 2004         30.50000           69.90
## 8191                    El Salvador 2004         22.00000           72.80
## 8192              Equatorial Guinea 2004         94.40000           55.90
## 8193                        Eritrea 2004         49.20000           60.00
## 8194                        Estonia 2004          6.30000           72.00
## 8195                       Ethiopia 2004         74.10000           55.20
## 8196                           Fiji 2004         20.10000           64.70
## 8197                        Finland 2004          3.20000           78.80
## 8198                         France 2004          3.90000           80.20
## 8199               French Polynesia 2004               NA           73.77
## 8200                          Gabon 2004         51.40000           59.40
## 8201                         Gambia 2004         58.00000           64.70
## 8202                        Georgia 2004         23.60000           71.50
## 8203                        Germany 2004          4.00000           79.20
## 8204                          Ghana 2004         58.10000           60.50
## 8205                         Greece 2004          5.20000           79.40
## 8206                      Greenland 2004               NA           68.80
## 8207                        Grenada 2004         12.60000           69.30
## 8208                      Guatemala 2004         34.60000           70.20
## 8209                         Guinea 2004         88.20000           55.60
## 8210                  Guinea-Bissau 2004         93.70000           52.80
## 8211                         Guyana 2004         34.80000           64.20
## 8212                          Haiti 2004         67.20000           58.60
## 8213                       Honduras 2004         26.00000           71.00
## 8214               Hong Kong, China 2004               NA           81.68
## 8215                        Hungary 2004          7.50000           72.90
## 8216                        Iceland 2004          2.60000           81.50
## 8217                          India 2004         57.80000           63.20
## 8218                      Indonesia 2004         36.00000           66.70
## 8219                           Iran 2004         23.00000           71.50
## 8220                           Iraq 2004         33.50000           66.30
## 8221                        Ireland 2004          4.70000           79.30
## 8222                         Israel 2004          4.70000           79.50
## 8223                          Italy 2004          3.80000           80.90
## 8224                        Jamaica 2004         17.10000           75.00
## 8225                          Japan 2004          2.90000           81.90
## 8226                         Jordan 2004         20.90000           74.10
## 8227                     Kazakhstan 2004         30.30000           65.30
## 8228                          Kenya 2004         57.20000           56.20
## 8229                       Kiribati 2004         49.70000           60.60
## 8230                    South Korea 2004          5.20000           78.20
## 8231                         Kuwait 2004         10.30000           78.10
## 8232                Kyrgyz Republic 2004         35.30000           66.20
## 8233                            Lao 2004         72.70000           59.30
## 8234                         Latvia 2004         11.40000           71.20
## 8235                        Lebanon 2004         13.10000           77.10
## 8236                        Lesotho 2004         87.90000           44.20
## 8237                        Liberia 2004         94.00000           57.90
## 8238                          Libya 2004         20.90000           75.20
## 8239                      Lithuania 2004          8.40000           72.20
## 8240                     Luxembourg 2004          3.00000           79.50
## 8241                   Macao, China 2004               NA           78.46
## 8242                 Macedonia, FYR 2004         12.40000           73.60
## 8243                     Madagascar 2004         56.50000           60.60
## 8244                         Malawi 2004         75.50000           47.50
## 8245                       Malaysia 2004          7.10000           74.00
## 8246                       Maldives 2004         22.60000           74.70
## 8247                           Mali 2004        100.60000           56.20
## 8248                          Malta 2004          6.10000           80.30
## 8249                     Mauritania 2004         75.30000           65.90
## 8250                      Mauritius 2004         13.70000           72.10
## 8251                         Mexico 2004         17.40000           75.20
## 8252          Micronesia, Fed. Sts. 2004         38.60000           67.40
## 8253                        Moldova 2004         18.00000           70.20
## 8254                       Mongolia 2004         37.30000           63.40
## 8255                     Montenegro 2004         10.10000           74.80
## 8256                        Morocco 2004         35.90000           72.50
## 8257                     Mozambique 2004         94.60000           53.00
## 8258                        Namibia 2004         47.10000           52.50
## 8259                          Nepal 2004         48.70000           67.00
## 8260                    Netherlands 2004          4.60000           79.10
## 8261                  New Caledonia 2004               NA           74.40
## 8262                    New Zealand 2004          5.50000           79.40
## 8263                      Nicaragua 2004         27.40000           76.40
## 8264                          Niger 2004         86.20000           55.20
## 8265                        Nigeria 2004         99.80000           56.10
## 8266                         Norway 2004          3.40000           79.80
## 8267                           Oman 2004         11.40000           75.80
## 8268                       Pakistan 2004         81.40000           63.10
## 8269                         Panama 2004         19.90000           77.10
## 8270               Papua New Guinea 2004         56.20000           57.70
## 8271                       Paraguay 2004         24.60000           73.80
## 8272                           Peru 2004         22.60000           76.70
## 8273                    Philippines 2004         27.90000           69.10
## 8274                         Poland 2004          6.70000           75.00
## 8275                       Portugal 2004          4.00000           78.20
## 8276                    Puerto Rico 2004               NA           76.50
## 8277                          Qatar 2004          9.20000           75.80
## 8278                        Romania 2004         19.50000           72.00
## 8279                         Russia 2004         15.40000           65.10
## 8280                         Rwanda 2004         77.70000           57.60
## 8281                      St. Lucia 2004         14.90000           72.80
## 8282 St. Vincent and the Grenadines 2004         19.10000           70.20
## 8283                          Samoa 2004         16.80000           71.60
## 8284                   Saudi Arabia 2004         17.20000           77.50
## 8285                        Senegal 2004         58.80000           61.70
## 8286                         Serbia 2004          8.30000           72.90
## 8287                     Seychelles 2004         12.30000           71.70
## 8288                   Sierra Leone 2004        131.40000           52.00
## 8289                      Singapore 2004          2.30000           79.80
## 8290                Slovak Republic 2004          8.80000           74.20
## 8291                       Slovenia 2004          3.70000           77.20
## 8292                Solomon Islands 2004         27.30000           61.70
## 8293                   South Africa 2004         52.80000           52.80
## 8294                          Spain 2004          5.00000           80.00
## 8295                      Sri Lanka 2004         15.30000           69.40
## 8296                          Sudan 2004         61.40000           63.70
## 8297                       Suriname 2004         26.60000           69.70
## 8298                      Swaziland 2004         84.80000           43.00
## 8299                         Sweden 2004          3.10000           80.20
## 8300                    Switzerland 2004          4.40000           81.00
## 8301                          Syria 2004         16.80000           75.30
## 8302                     Tajikistan 2004         57.30000           67.50
## 8303                       Tanzania 2004         62.70000           56.50
## 8304                       Thailand 2004         16.00000           72.20
## 8305                    Timor-Leste 2004         71.00000           66.50
## 8306                           Togo 2004         69.10000           56.80
## 8307                          Tonga 2004         14.30000           69.80
## 8308            Trinidad and Tobago 2004         24.30000           70.90
## 8309                        Tunisia 2004         20.70000           76.00
## 8310                         Turkey 2004         24.80000           75.80
## 8311                   Turkmenistan 2004         59.40000           65.30
## 8312                         Uganda 2004         72.20000           52.00
## 8313                        Ukraine 2004         13.00000           67.50
## 8314           United Arab Emirates 2004          8.70000           74.40
## 8315                 United Kingdom 2004          5.20000           78.70
## 8316                  United States 2004          6.90000           77.60
## 8317                        Uruguay 2004         12.80000           75.30
## 8318                     Uzbekistan 2004         47.30000           68.30
## 8319                        Vanuatu 2004         23.40000           62.60
## 8320                      Venezuela 2004         16.40000           74.30
## 8321             West Bank and Gaza 2004         22.60000           74.40
## 8322                        Vietnam 2004         23.20000           73.00
## 8323                          Yemen 2004         57.20000           64.20
## 8324                         Zambia 2004         73.90000           46.30
## 8325                       Zimbabwe 2004         61.50000           44.70
## 8326                        Albania 2005         18.30000           76.20
## 8327                        Algeria 2005         28.80000           74.80
## 8328                         Angola 2005        121.20000           55.20
## 8329            Antigua and Barbuda 2005         10.40000           74.90
## 8330                      Argentina 2005         15.30000           75.30
## 8331                        Armenia 2005         20.80000           71.80
## 8332                          Aruba 2005               NA           74.32
## 8333                      Australia 2005          4.80000           81.20
## 8334                        Austria 2005          4.00000           79.50
## 8335                     Azerbaijan 2005         44.00000           68.20
## 8336                        Bahamas 2005         12.60000           71.70
## 8337                        Bahrain 2005          9.30000           76.10
## 8338                     Bangladesh 2005         50.80000           67.10
## 8339                       Barbados 2005         15.10000           75.00
## 8340                        Belarus 2005          7.40000           68.70
## 8341                        Belgium 2005          4.10000           79.10
## 8342                         Belize 2005         18.50000           70.00
## 8343                          Benin 2005         78.80000           58.60
## 8344                         Bhutan 2005         45.30000           69.30
## 8345                        Bolivia 2005         46.60000           70.20
## 8346         Bosnia and Herzegovina 2005          7.10000           77.00
## 8347                       Botswana 2005         44.80000           49.30
## 8348                         Brazil 2005         19.50000           72.40
## 8349                         Brunei 2005          7.30000           76.70
## 8350                       Bulgaria 2005         13.60000           72.60
## 8351                   Burkina Faso 2005         86.00000           55.90
## 8352                        Burundi 2005         79.70000           54.70
## 8353                       Cambodia 2005         53.30000           64.00
## 8354                       Cameroon 2005         77.80000           54.90
## 8355                         Canada 2005          5.30000           80.20
## 8356                     Cape Verde 2005         23.20000           69.30
## 8357       Central African Republic 2005        109.30000           45.50
## 8358                           Chad 2005        100.40000           53.00
## 8359                          Chile 2005          7.70000           78.20
## 8360                          China 2005         20.30000           71.90
## 8361                       Colombia 2005         18.40000           75.10
## 8362                        Comoros 2005         70.50000           66.00
## 8363               Congo, Dem. Rep. 2005         96.30000           56.40
## 8364                    Congo, Rep. 2005         61.80000           56.70
## 8365                     Costa Rica 2005          9.00000           79.00
## 8366                  Cote d'Ivoire 2005         88.90000           53.40
## 8367                        Croatia 2005          5.80000           75.70
## 8368                           Cuba 2005          5.10000           77.10
## 8369                         Cyprus 2005          3.90000           79.00
## 8370                 Czech Republic 2005          4.40000           76.20
## 8371                        Denmark 2005          4.10000           78.30
## 8372                       Djibouti 2005         71.10000           60.70
## 8373             Dominican Republic 2005         30.10000           73.30
## 8374                        Ecuador 2005         24.30000           74.10
## 8375                          Egypt 2005         29.20000           70.10
## 8376                    El Salvador 2005         20.90000           73.00
## 8377              Equatorial Guinea 2005         91.70000           56.00
## 8378                        Eritrea 2005         47.20000           59.90
## 8379                        Estonia 2005          5.80000           72.50
## 8380                       Ethiopia 2005         69.60000           56.10
## 8381                           Fiji 2005         20.10000           64.80
## 8382                        Finland 2005          3.10000           79.00
## 8383                         France 2005          3.80000           80.40
## 8384               French Polynesia 2005               NA           74.13
## 8385                          Gabon 2005         50.20000           60.10
## 8386                         Gambia 2005         56.80000           64.90
## 8387                        Georgia 2005         21.90000           71.80
## 8388                        Germany 2005          3.90000           79.40
## 8389                          Ghana 2005         56.80000           60.80
## 8390                         Greece 2005          4.80000           79.60
## 8391                      Greenland 2005               NA           69.10
## 8392                        Grenada 2005         12.40000           70.30
## 8393                      Guatemala 2005         33.50000           69.80
## 8394                         Guinea 2005         84.90000           56.00
## 8395                  Guinea-Bissau 2005         90.10000           52.90
## 8396                         Guyana 2005         34.40000           64.40
## 8397                          Haiti 2005         65.60000           60.00
## 8398                       Honduras 2005         25.00000           71.20
## 8399               Hong Kong, China 2005               NA           81.92
## 8400                        Hungary 2005          7.20000           73.10
## 8401                        Iceland 2005          2.40000           81.70
## 8402                          India 2005         55.80000           63.60
## 8403                      Indonesia 2005         33.40000           68.70
## 8404                           Iran 2005         21.70000           71.90
## 8405                           Iraq 2005         33.00000           65.70
## 8406                        Ireland 2005          4.40000           79.70
## 8407                         Israel 2005          4.50000           79.70
## 8408                          Italy 2005          3.70000           81.10
## 8409                        Jamaica 2005         16.90000           75.40
## 8410                          Japan 2005          2.70000           82.00
## 8411                         Jordan 2005         20.40000           74.50
## 8412                     Kazakhstan 2005         28.60000           65.30
## 8413                          Kenya 2005         54.30000           57.20
## 8414                       Kiribati 2005         49.50000           60.80
## 8415                    South Korea 2005          4.80000           78.70
## 8416                         Kuwait 2005         10.10000           77.70
## 8417                Kyrgyz Republic 2005         34.20000           66.50
## 8418                            Lao 2005         70.20000           60.10
## 8419                         Latvia 2005         10.70000           71.10
## 8420                        Lebanon 2005         12.10000           77.30
## 8421                        Lesotho 2005         88.10000           43.10
## 8422                        Liberia 2005         87.60000           58.40
## 8423                          Libya 2005         19.80000           75.40
## 8424                      Lithuania 2005          8.10000           71.70
## 8425                     Luxembourg 2005          2.80000           80.00
## 8426                   Macao, China 2005               NA           78.67
## 8427                 Macedonia, FYR 2005         12.10000           73.80
## 8428                     Madagascar 2005         53.50000           61.20
## 8429                         Malawi 2005         70.70000           48.50
## 8430                       Malaysia 2005          7.00000           74.30
## 8431                       Maldives 2005         19.40000           76.90
## 8432                           Mali 2005         96.70000           56.90
## 8433                          Malta 2005          6.00000           80.70
## 8434                     Mauritania 2005         74.70000           66.30
## 8435                      Mauritius 2005         13.80000           72.40
## 8436                         Mexico 2005         16.70000           75.10
## 8437          Micronesia, Fed. Sts. 2005         37.70000           67.60
## 8438                        Moldova 2005         16.90000           69.50
## 8439                       Mongolia 2005         34.90000           63.60
## 8440                     Montenegro 2005          9.50000           75.00
## 8441                        Morocco 2005         34.50000           72.70
## 8442                     Mozambique 2005         90.40000           52.90
## 8443                        Namibia 2005         45.30000           53.10
## 8444                          Nepal 2005         46.30000           67.40
## 8445                    Netherlands 2005          4.50000           79.60
## 8446                  New Caledonia 2005               NA           74.62
## 8447                    New Zealand 2005          5.40000           79.80
## 8448                      Nicaragua 2005         26.30000           76.60
## 8449                          Niger 2005         82.30000           55.90
## 8450                        Nigeria 2005         96.60000           56.80
## 8451                         Norway 2005          3.20000           80.20
## 8452                           Oman 2005         10.90000           76.00
## 8453                       Pakistan 2005         80.00000           62.20
## 8454                         Panama 2005         19.40000           77.20
## 8455               Papua New Guinea 2005         55.60000           57.90
## 8456                       Paraguay 2005         23.80000           74.00
## 8457                           Peru 2005         21.30000           77.20
## 8458                    Philippines 2005         27.40000           69.10
## 8459                         Poland 2005          6.60000           75.10
## 8460                       Portugal 2005          3.70000           78.40
## 8461                    Puerto Rico 2005               NA           76.60
## 8462                          Qatar 2005          8.90000           76.30
## 8463                        Romania 2005         18.20000           72.40
## 8464                         Russia 2005         14.40000           65.10
## 8465                         Rwanda 2005         70.20000           59.60
## 8466                      St. Lucia 2005         14.80000           73.10
## 8467 St. Vincent and the Grenadines 2005         19.20000           70.40
## 8468                          Samoa 2005         16.50000           71.80
## 8469                   Saudi Arabia 2005         16.80000           77.80
## 8470                        Senegal 2005         56.30000           62.20
## 8471                         Serbia 2005          7.70000           73.20
## 8472                     Seychelles 2005         12.30000           72.00
## 8473                   Sierra Leone 2005        128.10000           52.30
## 8474                      Singapore 2005          2.30000           80.00
## 8475                Slovak Republic 2005          8.40000           74.30
## 8476                       Slovenia 2005          3.50000           77.60
## 8477                Solomon Islands 2005         27.50000           61.80
## 8478                   South Africa 2005         51.50000           52.70
## 8479                          Spain 2005          4.80000           80.30
## 8480                      Sri Lanka 2005         12.10000           73.90
## 8481                          Sudan 2005         59.90000           64.60
## 8482                       Suriname 2005         25.80000           69.90
## 8483                      Swaziland 2005         83.00000           42.50
## 8484                         Sweden 2005          3.00000           80.60
## 8485                    Switzerland 2005          4.30000           81.30
## 8486                          Syria 2005         16.10000           75.50
## 8487                     Tajikistan 2005         54.10000           68.00
## 8488                       Tanzania 2005         58.70000           57.10
## 8489                       Thailand 2005         15.30000           73.10
## 8490                    Timor-Leste 2005         67.40000           67.50
## 8491                           Togo 2005         67.40000           56.80
## 8492                          Tonga 2005         14.30000           70.00
## 8493            Trinidad and Tobago 2005         23.80000           71.10
## 8494                        Tunisia 2005         19.60000           76.20
## 8495                         Turkey 2005         23.20000           76.20
## 8496                   Turkmenistan 2005         57.80000           65.80
## 8497                         Uganda 2005         67.60000           53.50
## 8498                        Ukraine 2005         12.50000           67.10
## 8499           United Arab Emirates 2005          8.40000           75.20
## 8500                 United Kingdom 2005          5.10000           79.00
## 8501                  United States 2005          6.80000           77.60
## 8502                        Uruguay 2005         12.40000           75.50
## 8503                     Uzbekistan 2005         45.90000           68.50
## 8504                        Vanuatu 2005         23.40000           62.70
## 8505                      Venezuela 2005         15.90000           74.60
## 8506             West Bank and Gaza 2005         22.10000           74.60
## 8507                        Vietnam 2005         22.60000           73.30
## 8508                          Yemen 2005         54.50000           64.60
## 8509                         Zambia 2005         68.70000           47.10
## 8510                       Zimbabwe 2005         61.00000           45.10
## 8511                        Albania 2006         17.40000           76.40
## 8512                        Algeria 2006         27.60000           75.00
## 8513                         Angola 2006        119.40000           55.70
## 8514            Antigua and Barbuda 2006          9.80000           74.90
## 8515                      Argentina 2006         14.60000           75.30
## 8516                        Armenia 2006         19.80000           71.70
## 8517                          Aruba 2006               NA           74.47
## 8518                      Australia 2006          4.70000           81.40
## 8519                        Austria 2006          4.00000           80.00
## 8520                     Azerbaijan 2006         41.50000           68.70
## 8521                        Bahamas 2006         12.50000           72.00
## 8522                        Bahrain 2006          9.00000           76.30
## 8523                     Bangladesh 2006         48.40000           67.50
## 8524                       Barbados 2006         14.90000           75.00
## 8525                        Belarus 2006          6.80000           69.10
## 8526                        Belgium 2006          4.00000           79.50
## 8527                         Belize 2006         18.00000           70.30
## 8528                          Benin 2006         76.90000           58.90
## 8529                         Bhutan 2006         42.80000           69.80
## 8530                        Bolivia 2006         44.40000           70.60
## 8531         Bosnia and Herzegovina 2006          7.20000           77.10
## 8532                       Botswana 2006         43.80000           51.20
## 8533                         Brazil 2006         18.20000           72.70
## 8534                         Brunei 2006          7.30000           76.80
## 8535                       Bulgaria 2006         12.90000           72.70
## 8536                   Burkina Faso 2006         82.70000           56.60
## 8537                        Burundi 2006         76.20000           56.40
## 8538                       Cambodia 2006         49.80000           64.80
## 8539                       Cameroon 2006         75.30000           55.40
## 8540                         Canada 2006          5.20000           80.50
## 8541                     Cape Verde 2006         23.40000           69.60
## 8542       Central African Republic 2006        108.10000           45.80
## 8543                           Chad 2006         99.40000           53.10
## 8544                          Chile 2006          7.60000           78.20
## 8545                          China 2006         18.70000           72.60
## 8546                       Colombia 2006         17.80000           75.30
## 8547                        Comoros 2006         69.20000           66.30
## 8548               Congo, Dem. Rep. 2006         93.90000           56.80
## 8549                    Congo, Rep. 2006         57.40000           57.80
## 8550                     Costa Rica 2006          8.90000           79.30
## 8551                  Cote d'Ivoire 2006         86.70000           54.10
## 8552                        Croatia 2006          5.60000           75.90
## 8553                           Cuba 2006          4.90000           77.30
## 8554                         Cyprus 2006          3.70000           79.50
## 8555                 Czech Republic 2006          4.20000           76.50
## 8556                        Denmark 2006          3.90000           78.30
## 8557                       Djibouti 2006         69.40000           60.70
## 8558             Dominican Republic 2006         29.60000           73.50
## 8559                        Ecuador 2006         23.70000           74.30
## 8560                          Egypt 2006         28.10000           70.10
## 8561                    El Salvador 2006         20.00000           73.30
## 8562              Equatorial Guinea 2006         89.00000           56.80
## 8563                        Eritrea 2006         45.40000           60.00
## 8564                        Estonia 2006          5.30000           72.90
## 8565                       Ethiopia 2006         65.30000           57.20
## 8566                           Fiji 2006         20.20000           64.80
## 8567                        Finland 2006          2.90000           79.20
## 8568                         France 2006          3.70000           80.70
## 8569               French Polynesia 2006               NA           74.48
## 8570                          Gabon 2006         49.00000           60.90
## 8571                         Gambia 2006         55.60000           65.20
## 8572                        Georgia 2006         20.20000           71.90
## 8573                        Germany 2006          3.80000           79.70
## 8574                          Ghana 2006         55.60000           61.20
## 8575                         Greece 2006          4.60000           80.00
## 8576                      Greenland 2006               NA           69.50
## 8577                        Grenada 2006         12.30000           70.50
## 8578                      Guatemala 2006         32.30000           70.20
## 8579                         Guinea 2006         81.90000           56.40
## 8580                  Guinea-Bissau 2006         86.70000           53.00
## 8581                         Guyana 2006         34.10000           64.80
## 8582                          Haiti 2006         64.10000           60.30
## 8583                       Honduras 2006         24.10000           71.40
## 8584               Hong Kong, China 2006               NA           82.12
## 8585                        Hungary 2006          6.80000           73.30
## 8586                        Iceland 2006          2.30000           81.80
## 8587                          India 2006         53.90000           63.90
## 8588                      Indonesia 2006         32.10000           68.90
## 8589                           Iran 2006         20.50000           72.40
## 8590                           Iraq 2006         32.40000           65.10
## 8591                        Ireland 2006          4.10000           79.80
## 8592                         Israel 2006          4.30000           79.60
## 8593                          Italy 2006          3.70000           81.20
## 8594                        Jamaica 2006         16.70000           75.50
## 8595                          Japan 2006          2.70000           82.20
## 8596                         Jordan 2006         19.90000           75.50
## 8597                     Kazakhstan 2006         26.80000           65.30
## 8598                          Kenya 2006         51.80000           58.40
## 8599                       Kiribati 2006         49.50000           61.00
## 8600                    South Korea 2006          4.50000           79.10
## 8601                         Kuwait 2006         10.00000           77.70
## 8602                Kyrgyz Republic 2006         33.00000           66.70
## 8603                            Lao 2006         67.80000           60.80
## 8604                         Latvia 2006         10.10000           70.80
## 8605                        Lebanon 2006         11.20000           77.40
## 8606                        Lesotho 2006         87.50000           43.10
## 8607                        Liberia 2006         81.90000           58.80
## 8608                          Libya 2006         18.60000           75.50
## 8609                      Lithuania 2006          7.70000           71.50
## 8610                     Luxembourg 2006          2.60000           80.30
## 8611                   Macao, China 2006               NA           78.89
## 8612                 Macedonia, FYR 2006         11.60000           74.10
## 8613                     Madagascar 2006         50.60000           61.70
## 8614                         Malawi 2006         67.10000           49.60
## 8615                       Malaysia 2006          6.90000           74.50
## 8616                       Maldives 2006         17.20000           77.50
## 8617                           Mali 2006         93.20000           57.40
## 8618                          Malta 2006          5.90000           81.00
## 8619                     Mauritania 2006         74.00000           67.00
## 8620                      Mauritius 2006         14.00000           72.50
## 8621                         Mexico 2006         16.20000           75.40
## 8622          Micronesia, Fed. Sts. 2006         36.60000           67.70
## 8623                        Moldova 2006         16.00000           69.80
## 8624                       Mongolia 2006         32.70000           64.00
## 8625                     Montenegro 2006          8.80000           75.20
## 8626                        Morocco 2006         33.20000           72.90
## 8627                     Mozambique 2006         86.60000           53.00
## 8628                        Namibia 2006         44.10000           54.90
## 8629                          Nepal 2006         44.10000           67.80
## 8630                    Netherlands 2006          4.30000           79.90
## 8631                  New Caledonia 2006               NA           74.84
## 8632                    New Zealand 2006          5.30000           79.90
## 8633                      Nicaragua 2006         25.30000           76.70
## 8634                          Niger 2006         78.70000           56.60
## 8635                        Nigeria 2006         93.40000           57.40
## 8636                         Norway 2006          3.10000           80.40
## 8637                           Oman 2006         10.60000           76.00
## 8638                       Pakistan 2006         78.70000           63.70
## 8639                         Panama 2006         19.00000           77.20
## 8640               Papua New Guinea 2006         54.70000           58.00
## 8641                       Paraguay 2006         23.10000           74.00
## 8642                           Peru 2006         20.10000           77.70
## 8643                    Philippines 2006         26.90000           69.20
## 8644                         Poland 2006          6.30000           75.20
## 8645                       Portugal 2006          3.50000           79.00
## 8646                    Puerto Rico 2006               NA           76.80
## 8647                          Qatar 2006          8.60000           76.70
## 8648                        Romania 2006         16.70000           72.80
## 8649                         Russia 2006         13.30000           66.70
## 8650                         Rwanda 2006         63.10000           61.60
## 8651                      St. Lucia 2006         14.80000           73.40
## 8652 St. Vincent and the Grenadines 2006         19.20000           70.60
## 8653                          Samoa 2006         16.40000           72.00
## 8654                   Saudi Arabia 2006         16.40000           77.90
## 8655                        Senegal 2006         54.00000           62.50
## 8656                         Serbia 2006          7.30000           73.60
## 8657                     Seychelles 2006         12.20000           72.30
## 8658                   Sierra Leone 2006        124.50000           52.70
## 8659                      Singapore 2006          2.30000           80.20
## 8660                Slovak Republic 2006          8.20000           74.50
## 8661                       Slovenia 2006          3.30000           77.90
## 8662                Solomon Islands 2006         27.60000           61.90
## 8663                   South Africa 2006         50.00000           52.50
## 8664                          Spain 2006          4.60000           80.70
## 8665                      Sri Lanka 2006         11.40000           73.90
## 8666                          Sudan 2006         58.50000           64.90
## 8667                       Suriname 2006         25.00000           70.00
## 8668                      Swaziland 2006         76.80000           43.10
## 8669                         Sweden 2006          2.80000           80.80
## 8670                    Switzerland 2006          4.20000           81.50
## 8671                          Syria 2006         15.40000           75.70
## 8672                     Tajikistan 2006         51.40000           68.70
## 8673                       Tanzania 2006         55.20000           57.90
## 8674                       Thailand 2006         14.60000           73.50
## 8675                    Timor-Leste 2006         63.90000           68.50
## 8676                           Togo 2006         65.70000           57.50
## 8677                          Tonga 2006         14.40000           70.10
## 8678            Trinidad and Tobago 2006         23.30000           71.30
## 8679                        Tunisia 2006         18.50000           76.40
## 8680                         Turkey 2006         21.70000           76.70
## 8681                   Turkmenistan 2006         56.20000           66.30
## 8682                         Uganda 2006         63.40000           54.90
## 8683                        Ukraine 2006         12.00000           67.90
## 8684           United Arab Emirates 2006          8.20000           75.70
## 8685                 United Kingdom 2006          5.00000           79.20
## 8686                  United States 2006          6.70000           77.80
## 8687                        Uruguay 2006         12.00000           75.70
## 8688                     Uzbekistan 2006         44.60000           68.80
## 8689                        Vanuatu 2006         23.50000           62.90
## 8690                      Venezuela 2006         15.40000           74.50
## 8691             West Bank and Gaza 2006         21.70000           74.40
## 8692                        Vietnam 2006         22.00000           73.50
## 8693                          Yemen 2006         51.90000           65.00
## 8694                         Zambia 2006         64.90000           47.90
## 8695                       Zimbabwe 2006         60.30000           45.50
## 8696                        Albania 2007         16.70000           76.60
## 8697                        Algeria 2007         26.40000           75.30
## 8698                         Angola 2007        117.10000           56.20
## 8699            Antigua and Barbuda 2007          9.20000           75.30
## 8700                      Argentina 2007         14.10000           75.20
## 8701                        Armenia 2007         18.80000           72.30
## 8702                          Aruba 2007               NA           74.62
## 8703                      Australia 2007          4.50000           81.50
## 8704                        Austria 2007          3.80000           80.10
## 8705                     Azerbaijan 2007         39.30000           69.10
## 8706                        Bahamas 2007         12.20000           71.80
## 8707                        Bahrain 2007          8.50000           77.00
## 8708                     Bangladesh 2007         45.90000           67.70
## 8709                       Barbados 2007         14.50000           75.10
## 8710                        Belarus 2007          6.20000           69.70
## 8711                        Belgium 2007          3.90000           79.50
## 8712                         Belize 2007         17.60000           70.60
## 8713                          Benin 2007         75.20000           59.20
## 8714                         Bhutan 2007         40.40000           70.30
## 8715                        Bolivia 2007         42.20000           70.90
## 8716         Bosnia and Herzegovina 2007          7.10000           77.30
## 8717                       Botswana 2007         45.50000           52.40
## 8718                         Brazil 2007         17.10000           73.00
## 8719                         Brunei 2007          7.30000           76.80
## 8720                       Bulgaria 2007         12.30000           72.90
## 8721                   Burkina Faso 2007         79.20000           57.40
## 8722                        Burundi 2007         72.70000           57.90
## 8723                       Cambodia 2007         46.50000           65.40
## 8724                       Cameroon 2007         73.10000           55.70
## 8725                         Canada 2007          5.10000           80.60
## 8726                     Cape Verde 2007         23.60000           69.60
## 8727       Central African Republic 2007        106.90000           46.20
## 8728                           Chad 2007         98.10000           54.00
## 8729                          Chile 2007          7.60000           78.30
## 8730                          China 2007         17.20000           73.10
## 8731                       Colombia 2007         17.30000           75.90
## 8732                        Comoros 2007         67.90000           66.60
## 8733               Congo, Dem. Rep. 2007         91.50000           57.10
## 8734                    Congo, Rep. 2007         53.10000           58.30
## 8735                     Costa Rica 2007          8.90000           79.60
## 8736                  Cote d'Ivoire 2007         84.10000           54.90
## 8737                        Croatia 2007          5.30000           76.00
## 8738                           Cuba 2007          4.80000           77.50
## 8739                         Cyprus 2007          3.50000           79.80
## 8740                 Czech Republic 2007          3.90000           76.80
## 8741                        Denmark 2007          3.70000           78.40
## 8742                       Djibouti 2007         67.50000           61.50
## 8743             Dominican Republic 2007         29.10000           73.70
## 8744                        Ecuador 2007         23.10000           74.50
## 8745                          Egypt 2007         27.10000           70.30
## 8746                    El Salvador 2007         19.20000           73.50
## 8747              Equatorial Guinea 2007         86.30000           57.10
## 8748                        Eritrea 2007         43.70000           60.10
## 8749                        Estonia 2007          4.80000           73.00
## 8750                       Ethiopia 2007         61.00000           58.60
## 8751                           Fiji 2007         20.30000           64.90
## 8752                        Finland 2007          2.90000           79.40
## 8753                         France 2007          3.60000           81.00
## 8754               French Polynesia 2007               NA           74.81
## 8755                          Gabon 2007         47.40000           61.60
## 8756                         Gambia 2007         54.50000           65.30
## 8757                        Georgia 2007         18.60000           72.10
## 8758                        Germany 2007          3.70000           79.90
## 8759                          Ghana 2007         54.40000           61.60
## 8760                         Greece 2007          4.40000           79.80
## 8761                      Greenland 2007               NA           70.00
## 8762                        Grenada 2007         12.10000           70.70
## 8763                      Guatemala 2007         31.20000           71.00
## 8764                         Guinea 2007         79.00000           56.80
## 8765                  Guinea-Bissau 2007         83.30000           53.20
## 8766                         Guyana 2007         33.90000           64.90
## 8767                          Haiti 2007         62.70000           60.80
## 8768                       Honduras 2007         23.20000           71.60
## 8769               Hong Kong, China 2007               NA           82.31
## 8770                        Hungary 2007          6.50000           73.60
## 8771                        Iceland 2007          2.20000           82.10
## 8772                          India 2007         51.90000           64.30
## 8773                      Indonesia 2007         30.90000           69.20
## 8774                           Iran 2007         19.40000           72.80
## 8775                           Iraq 2007         31.80000           65.30
## 8776                        Ireland 2007          3.90000           80.10
## 8777                         Israel 2007          4.10000           80.30
## 8778                          Italy 2007          3.60000           81.30
## 8779                        Jamaica 2007         16.50000           75.30
## 8780                          Japan 2007          2.60000           82.40
## 8781                         Jordan 2007         19.30000           76.30
## 8782                     Kazakhstan 2007         24.80000           65.80
## 8783                          Kenya 2007         49.50000           59.80
## 8784                       Kiribati 2007         49.50000           61.20
## 8785                    South Korea 2007          4.10000           79.40
## 8786                         Kuwait 2007          9.80000           77.70
## 8787                Kyrgyz Republic 2007         31.70000           67.00
## 8788                            Lao 2007         65.50000           61.70
## 8789                         Latvia 2007          9.60000           71.30
## 8790                        Lebanon 2007         10.40000           77.50
## 8791                        Lesotho 2007         84.30000           43.30
## 8792                        Liberia 2007         76.90000           59.30
## 8793                          Libya 2007         17.30000           75.50
## 8794                      Lithuania 2007          7.20000           71.40
## 8795                     Luxembourg 2007          2.40000           80.60
## 8796                   Macao, China 2007               NA           79.10
## 8797                 Macedonia, FYR 2007         11.00000           74.30
## 8798                     Madagascar 2007         47.90000           62.00
## 8799                         Malawi 2007         64.50000           51.00
## 8800                       Malaysia 2007          6.90000           74.50
## 8801                       Maldives 2007         15.30000           78.10
## 8802                           Mali 2007         90.10000           58.00
## 8803                          Malta 2007          5.90000           80.90
## 8804                     Mauritania 2007         73.10000           67.50
## 8805                      Mauritius 2007         14.10000           72.70
## 8806                         Mexico 2007         15.80000           75.60
## 8807          Micronesia, Fed. Sts. 2007         35.70000           67.90
## 8808                        Moldova 2007         15.50000           70.00
## 8809                       Mongolia 2007         30.60000           64.40
## 8810                     Montenegro 2007          8.20000           75.60
## 8811                        Morocco 2007         31.90000           73.10
## 8812                     Mozambique 2007         81.50000           53.20
## 8813                        Namibia 2007         42.70000           57.50
## 8814                          Nepal 2007         42.00000           68.10
## 8815                    Netherlands 2007          4.20000           80.20
## 8816                  New Caledonia 2007               NA           75.05
## 8817                    New Zealand 2007          5.30000           80.10
## 8818                      Nicaragua 2007         24.40000           76.80
## 8819                          Niger 2007         75.20000           57.30
## 8820                        Nigeria 2007         90.30000           58.30
## 8821                         Norway 2007          3.00000           80.60
## 8822                           Oman 2007         10.40000           76.00
## 8823                       Pakistan 2007         77.40000           63.80
## 8824                         Panama 2007         18.50000           77.30
## 8825               Papua New Guinea 2007         53.80000           58.20
## 8826                       Paraguay 2007         22.40000           74.00
## 8827                           Peru 2007         19.00000           77.90
## 8828                    Philippines 2007         26.40000           69.70
## 8829                         Poland 2007          6.00000           75.20
## 8830                       Portugal 2007          3.30000           79.20
## 8831                    Puerto Rico 2007               NA           76.90
## 8832                          Qatar 2007          8.40000           77.30
## 8833                        Romania 2007         15.30000           73.30
## 8834                         Russia 2007         12.40000           67.70
## 8835                         Rwanda 2007         56.80000           63.10
## 8836                      St. Lucia 2007         14.60000           73.70
## 8837 St. Vincent and the Grenadines 2007         19.20000           70.80
## 8838                          Samoa 2007         16.20000           72.10
## 8839                   Saudi Arabia 2007         16.00000           78.20
## 8840                        Senegal 2007         51.90000           63.00
## 8841                         Serbia 2007          7.10000           74.00
## 8842                     Seychelles 2007         12.20000           72.60
## 8843                   Sierra Leone 2007        120.50000           53.00
## 8844                      Singapore 2007          2.30000           80.40
## 8845                Slovak Republic 2007          7.80000           74.60
## 8846                       Slovenia 2007          3.20000           78.20
## 8847                Solomon Islands 2007         27.60000           61.90
## 8848                   South Africa 2007         48.60000           53.00
## 8849                          Spain 2007          4.40000           80.80
## 8850                      Sri Lanka 2007         10.70000           74.40
## 8851                          Sudan 2007         57.10000           65.30
## 8852                       Suriname 2007         24.30000           70.10
## 8853                      Swaziland 2007         74.70000           44.30
## 8854                         Sweden 2007          2.70000           80.90
## 8855                    Switzerland 2007          4.10000           81.70
## 8856                          Syria 2007         14.80000           75.90
## 8857                     Tajikistan 2007         49.20000           69.20
## 8858                       Tanzania 2007         51.50000           59.10
## 8859                       Thailand 2007         14.00000           73.80
## 8860                    Timor-Leste 2007         60.70000           69.20
## 8861                           Togo 2007         64.10000           57.50
## 8862                          Tonga 2007         14.50000           70.20
## 8863            Trinidad and Tobago 2007         22.80000           71.50
## 8864                        Tunisia 2007         17.50000           76.60
## 8865                         Turkey 2007         20.20000           77.40
## 8866                   Turkmenistan 2007         54.70000           66.80
## 8867                         Uganda 2007         59.20000           55.30
## 8868                        Ukraine 2007         11.60000           67.60
## 8869           United Arab Emirates 2007          8.00000           75.60
## 8870                 United Kingdom 2007          4.90000           79.50
## 8871                  United States 2007          6.60000           78.10
## 8872                        Uruguay 2007         11.50000           75.70
## 8873                     Uzbekistan 2007         43.30000           69.20
## 8874                        Vanuatu 2007         23.60000           63.20
## 8875                      Venezuela 2007         15.00000           74.40
## 8876             West Bank and Gaza 2007         21.30000           74.30
## 8877                        Vietnam 2007         21.40000           73.80
## 8878                          Yemen 2007         49.40000           65.20
## 8879                         Zambia 2007         61.30000           49.00
## 8880                       Zimbabwe 2007         59.90000           46.40
## 8881                        Albania 2008         16.00000           76.80
## 8882                        Algeria 2008         25.30000           75.50
## 8883                         Angola 2008        114.70000           56.70
## 8884            Antigua and Barbuda 2008          8.80000           75.50
## 8885                      Argentina 2008         13.70000           75.40
## 8886                        Armenia 2008         17.90000           72.30
## 8887                          Aruba 2008               NA           74.77
## 8888                      Australia 2008          4.40000           81.60
## 8889                        Austria 2008          3.80000           80.40
## 8890                     Azerbaijan 2008         37.30000           69.20
## 8891                        Bahamas 2008         11.90000           72.20
## 8892                        Bahrain 2008          8.10000           77.60
## 8893                     Bangladesh 2008         43.60000           68.30
## 8894                       Barbados 2008         14.20000           75.30
## 8895                        Belarus 2008          5.60000           70.00
## 8896                        Belgium 2008          3.80000           79.60
## 8897                         Belize 2008         17.20000           70.70
## 8898                          Benin 2008         73.70000           59.70
## 8899                         Bhutan 2008         38.20000           70.70
## 8900                        Bolivia 2008         40.20000           71.20
## 8901         Bosnia and Herzegovina 2008          7.00000           77.50
## 8902                       Botswana 2008         45.30000           53.20
## 8903                         Brazil 2008         16.20000           73.20
## 8904                         Brunei 2008          7.40000           76.90
## 8905                       Bulgaria 2008         11.80000           73.20
## 8906                   Burkina Faso 2008         75.80000           58.00
## 8907                        Burundi 2008         69.30000           59.10
## 8908                       Cambodia 2008         43.30000           66.10
## 8909                       Cameroon 2008         70.80000           56.60
## 8910                         Canada 2008          5.00000           80.80
## 8911                     Cape Verde 2008         23.60000           70.40
## 8912       Central African Republic 2008        105.50000           46.80
## 8913                           Chad 2008         96.70000           54.30
## 8914                          Chile 2008          7.60000           78.50
## 8915                          China 2008         15.80000           73.40
## 8916                       Colombia 2008         16.90000           76.20
## 8917                        Comoros 2008         66.40000           67.10
## 8918               Congo, Dem. Rep. 2008         89.20000           57.50
## 8919                    Congo, Rep. 2008         49.00000           58.80
## 8920                     Costa Rica 2008          8.90000           79.80
## 8921                  Cote d'Ivoire 2008         81.30000           55.40
## 8922                        Croatia 2008          5.00000           76.20
## 8923                           Cuba 2008          4.70000           77.60
## 8924                         Cyprus 2008          3.30000           80.00
## 8925                 Czech Republic 2008          3.80000           77.10
## 8926                        Denmark 2008          3.60000           78.90
## 8927                       Djibouti 2008         65.70000           61.80
## 8928             Dominican Republic 2008         28.70000           74.10
## 8929                        Ecuador 2008         22.50000           74.70
## 8930                          Egypt 2008         26.10000           70.20
## 8931                    El Salvador 2008         18.40000           73.70
## 8932              Equatorial Guinea 2008         83.70000           57.50
## 8933                        Eritrea 2008         42.10000           60.10
## 8934                        Estonia 2008          4.40000           74.20
## 8935                       Ethiopia 2008         57.10000           60.00
## 8936                           Fiji 2008         20.30000           64.90
## 8937                        Finland 2008          2.70000           79.60
## 8938                         France 2008          3.50000           81.10
## 8939               French Polynesia 2008               NA           75.11
## 8940                          Gabon 2008         45.70000           61.70
## 8941                         Gambia 2008         53.60000           65.70
## 8942                        Georgia 2008         17.20000           71.80
## 8943                        Germany 2008          3.60000           80.00
## 8944                          Ghana 2008         53.10000           62.00
## 8945                         Greece 2008          4.30000           80.20
## 8946                      Greenland 2008               NA           70.30
## 8947                        Grenada 2008         12.00000           70.80
## 8948                      Guatemala 2008         30.20000           71.20
## 8949                         Guinea 2008         76.30000           57.10
## 8950                  Guinea-Bissau 2008         79.90000           53.60
## 8951                         Guyana 2008         33.80000           65.00
## 8952                          Haiti 2008         61.30000           61.00
## 8953                       Honduras 2008         22.30000           71.80
## 8954               Hong Kong, China 2008               NA           82.49
## 8955                        Hungary 2008          6.20000           73.90
## 8956                        Iceland 2008          2.10000           82.40
## 8957                          India 2008         50.00000           64.70
## 8958                      Indonesia 2008         29.70000           69.40
## 8959                           Iran 2008         18.30000           73.10
## 8960                           Iraq 2008         31.20000           66.60
## 8961                        Ireland 2008          3.80000           80.10
## 8962                         Israel 2008          3.90000           80.60
## 8963                          Italy 2008          3.50000           81.50
## 8964                        Jamaica 2008         16.20000           75.10
## 8965                          Japan 2008          2.50000           82.50
## 8966                         Jordan 2008         18.80000           76.90
## 8967                     Kazakhstan 2008         23.00000           67.10
## 8968                          Kenya 2008         46.20000           60.80
## 8969                       Kiribati 2008         49.30000           61.50
## 8970                    South Korea 2008          3.90000           79.80
## 8971                         Kuwait 2008          9.70000           77.30
## 8972                Kyrgyz Republic 2008         30.10000           67.30
## 8973                            Lao 2008         63.20000           62.50
## 8974                         Latvia 2008          9.10000           72.40
## 8975                        Lebanon 2008          9.70000           77.80
## 8976                        Lesotho 2008         84.50000           44.50
## 8977                        Liberia 2008         72.50000           59.90
## 8978                          Libya 2008         16.10000           75.60
## 8979                      Lithuania 2008          6.70000           72.10
## 8980                     Luxembourg 2008          2.20000           81.00
## 8981                   Macao, China 2008               NA           79.32
## 8982                 Macedonia, FYR 2008         10.40000           74.50
## 8983                     Madagascar 2008         45.70000           62.20
## 8984                         Malawi 2008         61.70000           52.40
## 8985                       Malaysia 2008          6.90000           74.50
## 8986                       Maldives 2008         13.70000           78.50
## 8987                           Mali 2008         87.50000           58.50
## 8988                          Malta 2008          5.80000           80.70
## 8989                     Mauritania 2008         72.10000           67.90
## 8990                      Mauritius 2008         13.90000           72.90
## 8991                         Mexico 2008         15.40000           75.40
## 8992          Micronesia, Fed. Sts. 2008         34.70000           68.00
## 8993                        Moldova 2008         15.20000           70.40
## 8994                       Mongolia 2008         28.60000           64.80
## 8995                     Montenegro 2008          7.40000           76.00
## 8996                        Morocco 2008         30.70000           73.30
## 8997                     Mozambique 2008         78.00000           54.00
## 8998                        Namibia 2008         41.30000           59.10
## 8999                          Nepal 2008         40.00000           68.40
## 9000                    Netherlands 2008          4.00000           80.30
## 9001                  New Caledonia 2008               NA           75.26
## 9002                    New Zealand 2008          5.30000           80.30
## 9003                      Nicaragua 2008         23.50000           77.00
## 9004                          Niger 2008         71.90000           58.00
## 9005                        Nigeria 2008         87.30000           59.20
## 9006                         Norway 2008          2.90000           80.80
## 9007                           Oman 2008         10.20000           76.20
## 9008                       Pakistan 2008         76.10000           64.10
## 9009                         Panama 2008         18.00000           77.30
## 9010               Papua New Guinea 2008         52.70000           58.60
## 9011                       Paraguay 2008         21.70000           74.00
## 9012                           Peru 2008         18.00000           78.20
## 9013                    Philippines 2008         25.90000           69.80
## 9014                         Poland 2008          5.80000           75.40
## 9015                       Portugal 2008          3.30000           79.40
## 9016                    Puerto Rico 2008               NA           77.00
## 9017                          Qatar 2008          8.10000           77.90
## 9018                        Romania 2008         14.00000           73.20
## 9019                         Russia 2008         11.60000           67.90
## 9020                         Rwanda 2008         51.50000           64.10
## 9021                      St. Lucia 2008         14.50000           74.10
## 9022 St. Vincent and the Grenadines 2008         19.00000           70.90
## 9023                          Samoa 2008         16.10000           72.30
## 9024                   Saudi Arabia 2008         15.50000           78.30
## 9025                        Senegal 2008         50.00000           63.50
## 9026                         Serbia 2008          7.00000           74.30
## 9027                     Seychelles 2008         12.20000           72.90
## 9028                   Sierra Leone 2008        116.20000           53.60
## 9029                      Singapore 2008          2.20000           80.60
## 9030                Slovak Republic 2008          7.60000           74.90
## 9031                       Slovenia 2008          3.00000           78.70
## 9032                Solomon Islands 2008         27.30000           62.30
## 9033                   South Africa 2008         46.60000           53.40
## 9034                          Spain 2008          4.20000           81.10
## 9035                      Sri Lanka 2008         10.20000           74.00
## 9036                          Sudan 2008         55.80000           65.50
## 9037                       Suriname 2008         23.50000           70.20
## 9038                      Swaziland 2008         73.20000           45.10
## 9039                         Sweden 2008          2.60000           81.10
## 9040                    Switzerland 2008          4.00000           82.00
## 9041                          Syria 2008         14.20000           76.10
## 9042                     Tajikistan 2008         47.40000           69.60
## 9043                       Tanzania 2008         48.30000           60.40
## 9044                       Thailand 2008         13.40000           73.90
## 9045                    Timor-Leste 2008         57.80000           69.90
## 9046                           Togo 2008         62.50000           57.50
## 9047                          Tonga 2008         14.60000           70.30
## 9048            Trinidad and Tobago 2008         22.20000           71.70
## 9049                        Tunisia 2008         16.60000           76.80
## 9050                         Turkey 2008         18.90000           77.80
## 9051                   Turkmenistan 2008         53.20000           67.20
## 9052                         Uganda 2008         55.40000           56.00
## 9053                        Ukraine 2008         11.10000           67.80
## 9054           United Arab Emirates 2008          7.80000           75.60
## 9055                 United Kingdom 2008          4.70000           79.70
## 9056                  United States 2008          6.50000           78.30
## 9057                        Uruguay 2008         11.20000           76.00
## 9058                     Uzbekistan 2008         42.00000           69.60
## 9059                        Vanuatu 2008         23.70000           63.40
## 9060                      Venezuela 2008         14.70000           74.20
## 9061             West Bank and Gaza 2008         20.90000           74.10
## 9062                        Vietnam 2008         20.80000           74.10
## 9063                          Yemen 2008         47.00000           65.70
## 9064                         Zambia 2008         58.70000           51.10
## 9065                       Zimbabwe 2008         58.90000           47.30
## 9066                        Albania 2009         15.40000           77.00
## 9067                        Algeria 2009         24.30000           75.70
## 9068                         Angola 2009        112.20000           57.10
## 9069            Antigua and Barbuda 2009          8.20000           75.70
## 9070                      Argentina 2009         13.40000           75.60
## 9071                        Armenia 2009         17.00000           72.60
## 9072                          Aruba 2009               NA           74.92
## 9073                      Australia 2009          4.20000           81.80
## 9074                        Austria 2009          3.70000           80.30
## 9075                     Azerbaijan 2009         35.50000           69.70
## 9076                        Bahamas 2009         11.70000           72.70
## 9077                        Bahrain 2009          7.60000           78.20
## 9078                     Bangladesh 2009         41.30000           68.60
## 9079                       Barbados 2009         13.90000           75.30
## 9080                        Belarus 2009          5.10000           70.10
## 9081                        Belgium 2009          3.70000           79.80
## 9082                         Belize 2009         16.70000           70.90
## 9083                          Benin 2009         72.30000           60.40
## 9084                         Bhutan 2009         36.10000           70.90
## 9085                        Bolivia 2009         38.40000           71.60
## 9086         Bosnia and Herzegovina 2009          6.70000           77.70
## 9087                       Botswana 2009         42.30000           54.30
## 9088                         Brazil 2009         15.40000           73.40
## 9089                         Brunei 2009          7.50000           77.00
## 9090                       Bulgaria 2009         11.50000           73.50
## 9091                   Burkina Faso 2009         72.50000           58.50
## 9092                        Burundi 2009         66.40000           60.00
## 9093                       Cambodia 2009         40.00000           66.60
## 9094                       Cameroon 2009         68.80000           57.30
## 9095                         Canada 2009          5.00000           81.10
## 9096                     Cape Verde 2009         23.60000           70.70
## 9097       Central African Republic 2009        103.60000           47.60
## 9098                           Chad 2009         95.10000           55.20
## 9099                          Chile 2009          7.50000           78.50
## 9100                          China 2009         14.60000           73.90
## 9101                       Colombia 2009         16.40000           76.20
## 9102                        Comoros 2009         64.60000           66.70
## 9103               Congo, Dem. Rep. 2009         86.90000           57.90
## 9104                    Congo, Rep. 2009         45.30000           59.80
## 9105                     Costa Rica 2009          8.90000           79.80
## 9106                  Cote d'Ivoire 2009         79.00000           56.00
## 9107                        Croatia 2009          4.80000           76.40
## 9108                           Cuba 2009          4.70000           77.70
## 9109                         Cyprus 2009          3.10000           80.30
## 9110                 Czech Republic 2009          3.60000           77.30
## 9111                        Denmark 2009          3.50000           79.10
## 9112                       Djibouti 2009         63.90000           62.10
## 9113             Dominican Republic 2009         28.30000           74.30
## 9114                        Ecuador 2009         21.90000           74.90
## 9115                          Egypt 2009         25.10000           70.10
## 9116                    El Salvador 2009         17.70000           73.80
## 9117              Equatorial Guinea 2009         81.20000           58.00
## 9118                        Eritrea 2009         40.70000           60.10
## 9119                        Estonia 2009          4.00000           74.90
## 9120                       Ethiopia 2009         53.60000           61.20
## 9121                           Fiji 2009         20.30000           64.90
## 9122                        Finland 2009          2.60000           79.80
## 9123                         France 2009          3.50000           81.20
## 9124               French Polynesia 2009               NA           75.38
## 9125                          Gabon 2009         44.20000           62.10
## 9126                         Gambia 2009         52.60000           66.00
## 9127                        Georgia 2009         16.00000           72.10
## 9128                        Germany 2009          3.60000           80.10
## 9129                          Ghana 2009         51.70000           62.40
## 9130                         Greece 2009          4.20000           80.20
## 9131                      Greenland 2009               NA           70.60
## 9132                        Grenada 2009         12.00000           70.90
## 9133                      Guatemala 2009         29.30000           70.90
## 9134                         Guinea 2009         73.70000           57.50
## 9135                  Guinea-Bissau 2009         76.60000           53.90
## 9136                         Guyana 2009         33.70000           65.30
## 9137                          Haiti 2009         60.00000           61.70
## 9138                       Honduras 2009         21.40000           71.90
## 9139               Hong Kong, China 2009               NA           82.66
## 9140                        Hungary 2009          5.90000           74.30
## 9141                        Iceland 2009          1.90000           82.50
## 9142                          India 2009         48.20000           65.00
## 9143                      Indonesia 2009         28.50000           69.60
## 9144                           Iran 2009         17.30000           73.40
## 9145                           Iraq 2009         30.60000           67.10
## 9146                        Ireland 2009          3.60000           80.30
## 9147                         Israel 2009          3.80000           81.00
## 9148                          Italy 2009          3.50000           81.60
## 9149                        Jamaica 2009         15.90000           74.80
## 9150                          Japan 2009          2.40000           82.70
## 9151                         Jordan 2009         18.30000           77.50
## 9152                     Kazakhstan 2009         21.10000           68.20
## 9153                          Kenya 2009         44.30000           61.90
## 9154                       Kiribati 2009         48.90000           61.70
## 9155                    South Korea 2009          3.70000           80.10
## 9156                         Kuwait 2009          9.50000           77.40
## 9157                Kyrgyz Republic 2009         28.40000           67.70
## 9158                            Lao 2009         61.00000           63.30
## 9159                         Latvia 2009          8.60000           73.30
## 9160                        Lebanon 2009          9.20000           77.90
## 9161                        Lesotho 2009         78.80000           45.50
## 9162                        Liberia 2009         68.60000           60.30
## 9163                          Libya 2009         15.10000           75.70
## 9164                      Lithuania 2009          6.10000           73.60
## 9165                     Luxembourg 2009          2.00000           81.20
## 9166                   Macao, China 2009               NA           79.54
## 9167                 Macedonia, FYR 2009          9.60000           74.70
## 9168                     Madagascar 2009         43.80000           62.30
## 9169                         Malawi 2009         59.60000           53.90
## 9170                       Malaysia 2009          6.90000           74.30
## 9171                       Maldives 2009         12.40000           78.90
## 9172                           Mali 2009         85.00000           58.90
## 9173                          Malta 2009          5.70000           81.20
## 9174                     Mauritania 2009         71.10000           68.20
## 9175                      Mauritius 2009         13.60000           73.20
## 9176                         Mexico 2009         15.00000           75.30
## 9177          Micronesia, Fed. Sts. 2009         33.80000           68.10
## 9178                        Moldova 2009         14.90000           70.60
## 9179                       Mongolia 2009         26.80000           65.00
## 9180                     Montenegro 2009          6.80000           76.30
## 9181                        Morocco 2009         29.60000           73.50
## 9182                     Mozambique 2009         74.30000           54.40
## 9183                        Namibia 2009         39.20000           60.30
## 9184                          Nepal 2009         38.10000           68.70
## 9185                    Netherlands 2009          3.80000           80.60
## 9186                  New Caledonia 2009               NA           75.47
## 9187                    New Zealand 2009          5.20000           80.50
## 9188                      Nicaragua 2009         22.70000           77.10
## 9189                          Niger 2009         68.90000           58.60
## 9190                        Nigeria 2009         84.30000           60.30
## 9191                         Norway 2009          2.70000           80.80
## 9192                           Oman 2009         10.10000           76.20
## 9193                       Pakistan 2009         74.80000           64.30
## 9194                         Panama 2009         17.50000           77.30
## 9195               Papua New Guinea 2009         51.60000           58.80
## 9196                       Paraguay 2009         21.00000           74.00
## 9197                           Peru 2009         17.10000           78.20
## 9198                    Philippines 2009         25.40000           69.90
## 9199                         Poland 2009          5.30000           75.70
## 9200                       Portugal 2009          3.20000           79.60
## 9201                    Puerto Rico 2009               NA           77.10
## 9202                          Qatar 2009          7.90000           78.50
## 9203                        Romania 2009         13.00000           73.30
## 9204                         Russia 2009         10.90000           68.80
## 9205                         Rwanda 2009         47.30000           64.30
## 9206                      St. Lucia 2009         14.30000           74.30
## 9207 St. Vincent and the Grenadines 2009         18.80000           71.10
## 9208                          Samoa 2009         17.00000           70.40
## 9209                   Saudi Arabia 2009         15.10000           78.50
## 9210                        Senegal 2009         48.30000           63.90
## 9211                         Serbia 2009          6.80000           74.60
## 9212                     Seychelles 2009         12.20000           73.00
## 9213                   Sierra Leone 2009        111.70000           54.20
## 9214                      Singapore 2009          2.20000           81.00
## 9215                Slovak Republic 2009          7.30000           75.20
## 9216                       Slovenia 2009          2.80000           79.10
## 9217                Solomon Islands 2009         27.00000           62.40
## 9218                   South Africa 2009         41.10000           53.90
## 9219                          Spain 2009          4.10000           81.50
## 9220                      Sri Lanka 2009          9.70000           74.10
## 9221                          Sudan 2009         54.50000           65.70
## 9222                       Suriname 2009         22.70000           70.50
## 9223                      Swaziland 2009         65.80000           45.90
## 9224                         Sweden 2009          2.50000           81.20
## 9225                    Switzerland 2009          3.90000           82.00
## 9226                          Syria 2009         13.70000           76.30
## 9227                     Tajikistan 2009         46.00000           70.00
## 9228                       Tanzania 2009         45.60000           60.80
## 9229                       Thailand 2009         12.90000           74.00
## 9230                    Timor-Leste 2009         55.30000           70.40
## 9231                           Togo 2009         60.90000           58.00
## 9232                          Tonga 2009         14.80000           68.60
## 9233            Trinidad and Tobago 2009         21.60000           71.80
## 9234                        Tunisia 2009         15.70000           77.00
## 9235                         Turkey 2009         17.60000           78.50
## 9236                   Turkmenistan 2009         51.70000           67.60
## 9237                         Uganda 2009         52.30000           57.00
## 9238                        Ukraine 2009         10.60000           69.60
## 9239           United Arab Emirates 2009          7.60000           75.60
## 9240                 United Kingdom 2009          4.60000           80.00
## 9241                  United States 2009          6.40000           78.50
## 9242                        Uruguay 2009         11.00000           76.20
## 9243                     Uzbekistan 2009         40.80000           69.90
## 9244                        Vanuatu 2009         23.80000           63.60
## 9245                      Venezuela 2009         14.50000           74.40
## 9246             West Bank and Gaza 2009         20.50000           73.80
## 9247                        Vietnam 2009         20.30000           74.30
## 9248                          Yemen 2009         44.70000           66.20
## 9249                         Zambia 2009         55.60000           52.30
## 9250                       Zimbabwe 2009         57.70000           48.00
## 9251                        Albania 2010         14.80000           77.20
## 9252                        Algeria 2010         23.50000           76.00
## 9253                         Angola 2010        109.60000           57.60
## 9254            Antigua and Barbuda 2010          7.70000           75.80
## 9255                      Argentina 2010         13.00000           75.80
## 9256                        Armenia 2010         16.10000           73.00
## 9257                          Aruba 2010               NA           75.06
## 9258                      Australia 2010          4.10000           82.00
## 9259                        Austria 2010          3.60000           80.50
## 9260                     Azerbaijan 2010         33.90000           70.10
## 9261                        Bahamas 2010         11.40000           72.70
## 9262                        Bahrain 2010          7.10000           78.70
## 9263                     Bangladesh 2010         39.20000           68.80
## 9264                       Barbados 2010         13.60000           75.20
## 9265                        Belarus 2010          4.70000           70.20
## 9266                        Belgium 2010          3.60000           80.10
## 9267                         Belize 2010         16.30000           71.20
## 9268                          Benin 2010         71.00000           60.80
## 9269                         Bhutan 2010         34.10000           71.40
## 9270                        Bolivia 2010         36.80000           71.80
## 9271         Bosnia and Herzegovina 2010          6.40000           77.90
## 9272                       Botswana 2010         39.80000           55.60
## 9273                         Brazil 2010         14.80000           73.60
## 9274                         Brunei 2010          7.70000           77.10
## 9275                       Bulgaria 2010         11.20000           73.70
## 9276                   Burkina Faso 2010         69.70000           59.00
## 9277                        Burundi 2010         63.80000           60.40
## 9278                       Cambodia 2010         36.70000           67.00
## 9279                       Cameroon 2010         66.20000           57.80
## 9280                         Canada 2010          4.90000           81.30
## 9281                     Cape Verde 2010         23.30000           71.10
## 9282       Central African Republic 2010        101.70000           47.90
## 9283                           Chad 2010         93.60000           55.80
## 9284                          Chile 2010          7.60000           78.50
## 9285                          China 2010         13.50000           74.30
## 9286                       Colombia 2010         15.90000           76.40
## 9287                        Comoros 2010         63.10000           67.70
## 9288               Congo, Dem. Rep. 2010         84.80000           58.40
## 9289                    Congo, Rep. 2010         42.20000           60.40
## 9290                     Costa Rica 2010          8.90000           79.80
## 9291                  Cote d'Ivoire 2010         76.90000           56.60
## 9292                        Croatia 2010          4.60000           76.70
## 9293                           Cuba 2010          4.90000           77.80
## 9294                         Cyprus 2010          3.00000           80.60
## 9295                 Czech Republic 2010          3.40000           77.50
## 9296                        Denmark 2010          3.30000           79.40
## 9297                       Djibouti 2010         62.20000           62.30
## 9298             Dominican Republic 2010         27.90000           74.40
## 9299                        Ecuador 2010         21.30000           75.10
## 9300                          Egypt 2010         24.30000           70.10
## 9301                    El Salvador 2010         17.10000           74.10
## 9302              Equatorial Guinea 2010         78.90000           58.60
## 9303                        Eritrea 2010         39.40000           60.10
## 9304                        Estonia 2010          3.60000           76.40
## 9305                       Ethiopia 2010         50.80000           62.10
## 9306                           Fiji 2010         20.30000           65.20
## 9307                        Finland 2010          2.50000           80.00
## 9308                         France 2010          3.50000           81.40
## 9309               French Polynesia 2010               NA           75.62
## 9310                          Gabon 2010         42.80000           63.00
## 9311                         Gambia 2010         51.70000           66.50
## 9312                        Georgia 2010         14.90000           72.20
## 9313                        Germany 2010          3.50000           80.30
## 9314                          Ghana 2010         50.20000           62.90
## 9315                         Greece 2010          4.10000           80.40
## 9316                      Greenland 2010               NA           70.80
## 9317                        Grenada 2010         11.90000           71.00
## 9318                      Guatemala 2010         28.40000           71.20
## 9319                         Guinea 2010         71.20000           57.90
## 9320                  Guinea-Bissau 2010         73.40000           54.30
## 9321                         Guyana 2010         33.50000           65.50
## 9322                          Haiti 2010         85.50000           32.20
## 9323                       Honduras 2010         20.70000           72.00
## 9324               Hong Kong, China 2010               NA           82.84
## 9325                        Hungary 2010          5.70000           74.60
## 9326                        Iceland 2010          1.90000           82.80
## 9327                          India 2010         46.30000           65.40
## 9328                      Indonesia 2010         27.40000           69.80
## 9329                           Iran 2010         16.40000           73.70
## 9330                           Iraq 2010         30.00000           67.30
## 9331                        Ireland 2010          3.50000           81.00
## 9332                         Israel 2010          3.70000           81.60
## 9333                          Italy 2010          3.40000           81.90
## 9334                        Jamaica 2010         15.50000           74.80
## 9335                          Japan 2010          2.40000           82.70
## 9336                         Jordan 2010         17.80000           77.90
## 9337                     Kazakhstan 2010         19.30000           68.50
## 9338                          Kenya 2010         42.40000           62.90
## 9339                       Kiribati 2010         48.30000           61.90
## 9340                    South Korea 2010          3.50000           80.40
## 9341                         Kuwait 2010          9.20000           78.50
## 9342                Kyrgyz Republic 2010         26.50000           67.90
## 9343                            Lao 2010         59.00000           64.10
## 9344                         Latvia 2010          8.20000           73.90
## 9345                        Lebanon 2010          8.70000           78.10
## 9346                        Lesotho 2010         75.20000           46.40
## 9347                        Liberia 2010         65.20000           60.80
## 9348                          Libya 2010         14.30000           75.90
## 9349                      Lithuania 2010          5.60000           73.90
## 9350                     Luxembourg 2010          1.90000           81.30
## 9351                   Macao, China 2010               NA           79.75
## 9352                 Macedonia, FYR 2010          8.70000           75.20
## 9353                     Madagascar 2010         42.10000           62.40
## 9354                         Malawi 2010         57.50000           55.40
## 9355                       Malaysia 2010          6.80000           74.40
## 9356                       Maldives 2010         11.20000           79.20
## 9357                           Mali 2010         82.90000           59.20
## 9358                          Malta 2010          5.60000           81.30
## 9359                     Mauritania 2010         70.10000           68.60
## 9360                      Mauritius 2010         13.30000           73.40
## 9361                         Mexico 2010         14.40000           75.40
## 9362          Micronesia, Fed. Sts. 2010         32.90000           68.30
## 9363                        Moldova 2010         14.70000           70.50
## 9364                       Mongolia 2010         25.00000           65.20
## 9365                     Montenegro 2010          6.30000           76.50
## 9366                        Morocco 2010         28.50000           73.70
## 9367                     Mozambique 2010         71.90000           54.40
## 9368                        Namibia 2010         37.50000           61.40
## 9369                          Nepal 2010         36.30000           69.00
## 9370                    Netherlands 2010          3.70000           80.80
## 9371                  New Caledonia 2010               NA           75.67
## 9372                    New Zealand 2010          5.10000           80.80
## 9373                      Nicaragua 2010         22.00000           77.20
## 9374                          Niger 2010         66.10000           59.20
## 9375                        Nigeria 2010         81.50000           61.20
## 9376                         Norway 2010          2.60000           81.10
## 9377                           Oman 2010         10.00000           76.10
## 9378                       Pakistan 2010         73.50000           64.50
## 9379                         Panama 2010         17.00000           77.30
## 9380               Papua New Guinea 2010         50.30000           59.10
## 9381                       Paraguay 2010         20.40000           74.00
## 9382                           Peru 2010         16.30000           78.40
## 9383                    Philippines 2010         24.90000           70.10
## 9384                         Poland 2010          5.00000           76.20
## 9385                       Portugal 2010          3.10000           79.90
## 9386                    Puerto Rico 2010               NA           77.10
## 9387                          Qatar 2010          7.70000           79.20
## 9388                        Romania 2010         12.10000           73.70
## 9389                         Russia 2010         10.30000           68.90
## 9390                         Rwanda 2010         43.80000           65.10
## 9391                      St. Lucia 2010         14.10000           74.50
## 9392 St. Vincent and the Grenadines 2010         18.60000           71.10
## 9393                          Samoa 2010         16.00000           72.60
## 9394                   Saudi Arabia 2010         14.70000           78.70
## 9395                        Senegal 2010         46.70000           64.20
## 9396                         Serbia 2010          6.60000           74.80
## 9397                     Seychelles 2010         12.20000           73.10
## 9398                   Sierra Leone 2010        107.00000           55.00
## 9399                      Singapore 2010          2.20000           81.30
## 9400                Slovak Republic 2010          7.00000           75.70
## 9401                       Slovenia 2010          2.70000           79.50
## 9402                Solomon Islands 2010         26.60000           62.70
## 9403                   South Africa 2010         38.20000           54.90
## 9404                          Spain 2010          3.90000           81.80
## 9405                      Sri Lanka 2010          9.40000           75.00
## 9406                          Sudan 2010         53.30000           66.10
## 9407                       Suriname 2010         22.10000           70.70
## 9408                      Swaziland 2010         59.10000           46.40
## 9409                         Sweden 2010          2.50000           81.60
## 9410                    Switzerland 2010          3.90000           82.30
## 9411                          Syria 2010         13.20000           76.50
## 9412                     Tajikistan 2010         44.70000           70.10
## 9413                       Tanzania 2010         42.40000           61.40
## 9414                       Thailand 2010         12.50000           74.20
## 9415                    Timor-Leste 2010         53.10000           70.80
## 9416                           Togo 2010         59.30000           58.70
## 9417                          Tonga 2010         15.00000           70.70
## 9418            Trinidad and Tobago 2010         21.00000           71.80
## 9419                        Tunisia 2010         14.90000           77.10
## 9420                         Turkey 2010         16.40000           78.80
## 9421                   Turkmenistan 2010         50.40000           68.10
## 9422                         Uganda 2010         49.50000           57.80
## 9423                        Ukraine 2010         10.10000           70.50
## 9424           United Arab Emirates 2010          7.30000           75.60
## 9425                 United Kingdom 2010          4.40000           80.20
## 9426                  United States 2010          6.30000           78.80
## 9427                        Uruguay 2010         10.60000           76.20
## 9428                     Uzbekistan 2010         39.60000           70.20
## 9429                        Vanuatu 2010         23.90000           63.90
## 9430                      Venezuela 2010         14.30000           74.90
## 9431             West Bank and Gaza 2010         20.20000           74.30
## 9432                        Vietnam 2010         19.80000           74.50
## 9433                          Yemen 2010         42.40000           66.60
## 9434                         Zambia 2010         52.90000           53.10
## 9435                       Zimbabwe 2010         55.80000           49.10
## 9436                        Albania 2011         14.30000           77.40
## 9437                        Algeria 2011         22.80000           76.10
## 9438                         Angola 2011        106.80000           58.10
## 9439            Antigua and Barbuda 2011          7.20000           75.90
## 9440                      Argentina 2011         12.70000           76.00
## 9441                        Armenia 2011         15.30000           73.50
## 9442                          Aruba 2011               NA           75.19
## 9443                      Australia 2011          3.80000           82.20
## 9444                        Austria 2011          3.40000           80.70
## 9445                     Azerbaijan 2011         32.50000           70.80
## 9446                        Bahamas 2011         11.10000           72.60
## 9447                        Bahrain 2011          6.70000           78.80
## 9448                     Bangladesh 2011         37.20000           69.30
## 9449                       Barbados 2011         13.30000           75.20
## 9450                        Belarus 2011          4.30000           70.30
## 9451                        Belgium 2011          3.50000           80.20
## 9452                         Belize 2011         15.90000           71.20
## 9453                          Benin 2011         69.80000           61.10
## 9454                         Bhutan 2011         32.30000           71.70
## 9455                        Bolivia 2011         35.30000           72.10
## 9456         Bosnia and Herzegovina 2011          6.20000           78.20
## 9457                       Botswana 2011         39.90000           56.50
## 9458                         Brazil 2011         14.40000           73.80
## 9459                         Brunei 2011          7.80000           76.90
## 9460                       Bulgaria 2011         10.90000           74.20
## 9461                   Burkina Faso 2011         67.30000           59.50
## 9462                        Burundi 2011         61.60000           60.80
## 9463                       Cambodia 2011         33.60000           67.60
## 9464                       Cameroon 2011         64.40000           58.10
## 9465                         Canada 2011          4.70000           81.60
## 9466                     Cape Verde 2011         22.90000           71.40
## 9467       Central African Republic 2011         99.70000           48.10
## 9468                           Chad 2011         91.90000           56.10
## 9469                          Chile 2011          7.50000           78.90
## 9470                          China 2011         12.50000           74.90
## 9471                       Colombia 2011         15.40000           77.00
## 9472                        Comoros 2011         61.30000           67.20
## 9473               Congo, Dem. Rep. 2011         82.60000           58.80
## 9474                    Congo, Rep. 2011         39.60000           60.90
## 9475                     Costa Rica 2011          8.80000           79.90
## 9476                  Cote d'Ivoire 2011         75.00000           57.00
## 9477                        Croatia 2011          4.30000           77.10
## 9478                           Cuba 2011          4.80000           77.90
## 9479                         Cyprus 2011          2.90000           81.10
## 9480                 Czech Republic 2011          3.20000           77.80
## 9481                        Denmark 2011          3.20000           79.90
## 9482                       Djibouti 2011         60.50000           62.50
## 9483             Dominican Republic 2011         27.50000           74.60
## 9484                        Ecuador 2011         20.70000           75.30
## 9485                          Egypt 2011         23.40000           70.40
## 9486                    El Salvador 2011         16.50000           74.30
## 9487              Equatorial Guinea 2011         76.60000           58.70
## 9488                        Eritrea 2011         38.20000           60.20
## 9489                        Estonia 2011          3.20000           76.30
## 9490                       Ethiopia 2011         48.30000           62.90
## 9491                           Fiji 2011         20.10000           65.30
## 9492                        Finland 2011          2.40000           80.30
## 9493                         France 2011          3.50000           81.60
## 9494               French Polynesia 2011               NA           75.84
## 9495                          Gabon 2011         41.30000           63.30
## 9496                         Gambia 2011         50.90000           67.10
## 9497                        Georgia 2011         13.80000           72.20
## 9498                        Germany 2011          3.40000           80.50
## 9499                          Ghana 2011         48.60000           63.50
## 9500                         Greece 2011          4.00000           80.50
## 9501                      Greenland 2011               NA           71.20
## 9502                        Grenada 2011         11.80000           71.00
## 9503                      Guatemala 2011         27.50000           71.60
## 9504                         Guinea 2011         68.90000           58.20
## 9505                  Guinea-Bissau 2011         70.30000           54.50
## 9506                         Guyana 2011         33.50000           65.60
## 9507                          Haiti 2011         57.50000           62.40
## 9508                       Honduras 2011         19.90000           72.20
## 9509               Hong Kong, China 2011               NA           83.02
## 9510                        Hungary 2011          5.50000           75.00
## 9511                        Iceland 2011          1.80000           82.90
## 9512                          India 2011         44.40000           65.70
## 9513                      Indonesia 2011         26.30000           70.10
## 9514                           Iran 2011         15.70000           74.10
## 9515                           Iraq 2011         29.30000           67.70
## 9516                        Ireland 2011          3.40000           80.60
## 9517                         Israel 2011          3.50000           81.60
## 9518                          Italy 2011          3.30000           82.00
## 9519                        Jamaica 2011         15.10000           74.60
## 9520                          Japan 2011          2.30000           82.60
## 9521                         Jordan 2011         17.30000           78.10
## 9522                     Kazakhstan 2011         17.50000           69.10
## 9523                          Kenya 2011         40.30000           63.70
## 9524                       Kiribati 2011         47.50000           62.10
## 9525                    South Korea 2011          3.40000           80.60
## 9526                         Kuwait 2011          8.90000           79.00
## 9527                Kyrgyz Republic 2011         24.60000           68.50
## 9528                            Lao 2011         57.10000           65.00
## 9529                         Latvia 2011          7.80000           74.60
## 9530                        Lebanon 2011          8.30000           76.60
## 9531                        Lesotho 2011         71.90000           46.70
## 9532                        Liberia 2011         62.10000           61.50
## 9533                          Libya 2011         13.90000           60.50
## 9534                      Lithuania 2011          5.00000           74.30
## 9535                     Luxembourg 2011          1.80000           81.50
## 9536                   Macao, China 2011               NA           79.97
## 9537                 Macedonia, FYR 2011          7.50000           75.60
## 9538                     Madagascar 2011         40.60000           62.60
## 9539                         Malawi 2011         53.80000           56.60
## 9540                       Malaysia 2011          6.70000           74.60
## 9541                       Maldives 2011         10.10000           79.60
## 9542                           Mali 2011         81.00000           59.60
## 9543                          Malta 2011          5.60000           81.30
## 9544                     Mauritania 2011         69.20000           68.80
## 9545                      Mauritius 2011         13.10000           73.70
## 9546                         Mexico 2011         13.80000           75.70
## 9547          Micronesia, Fed. Sts. 2011         32.00000           68.40
## 9548                        Moldova 2011         14.50000           72.30
## 9549                       Mongolia 2011         23.40000           65.60
## 9550                     Montenegro 2011          5.70000           76.70
## 9551                        Morocco 2011         27.40000           73.90
## 9552                     Mozambique 2011         68.10000           54.50
## 9553                        Namibia 2011         36.00000           62.60
## 9554                          Nepal 2011         34.60000           69.30
## 9555                    Netherlands 2011          3.60000           80.90
## 9556                  New Caledonia 2011               NA           75.88
## 9557                    New Zealand 2011          5.00000           80.80
## 9558                      Nicaragua 2011         21.30000           77.40
## 9559                          Niger 2011         63.70000           59.60
## 9560                        Nigeria 2011         78.80000           62.00
## 9561                         Norway 2011          2.50000           81.10
## 9562                           Oman 2011         10.00000           76.30
## 9563                       Pakistan 2011         72.10000           64.90
## 9564                         Panama 2011         16.50000           77.40
## 9565               Papua New Guinea 2011         49.20000           59.40
## 9566                       Paraguay 2011         19.80000           74.00
## 9567                           Peru 2011         15.60000           78.50
## 9568                    Philippines 2011         24.40000           70.20
## 9569                         Poland 2011          4.70000           76.50
## 9570                       Portugal 2011          3.10000           80.20
## 9571                    Puerto Rico 2011               NA           77.40
## 9572                          Qatar 2011          7.50000           79.70
## 9573                        Romania 2011         11.50000           74.50
## 9574                         Russia 2011          9.80000           69.80
## 9575                         Rwanda 2011         40.00000           65.30
## 9576                      St. Lucia 2011         13.90000           74.60
## 9577 St. Vincent and the Grenadines 2011         18.20000           71.00
## 9578                          Samoa 2011         16.00000           72.70
## 9579                   Saudi Arabia 2011         14.20000           78.90
## 9580                        Senegal 2011         45.30000           64.40
## 9581                         Serbia 2011          6.40000           75.10
## 9582                     Seychelles 2011         12.20000           73.40
## 9583                   Sierra Leone 2011        102.30000           55.60
## 9584                      Singapore 2011          2.20000           81.50
## 9585                Slovak Republic 2011          6.80000           76.10
## 9586                       Slovenia 2011          2.60000           79.90
## 9587                Solomon Islands 2011         26.10000           63.00
## 9588                   South Africa 2011         37.10000           56.60
## 9589                          Spain 2011          3.80000           82.00
## 9590                      Sri Lanka 2011          9.10000           76.40
## 9591                          Sudan 2011         52.20000           66.30
## 9592                       Suriname 2011         21.40000           71.00
## 9593                      Swaziland 2011         53.60000           48.00
## 9594                         Sweden 2011          2.40000           81.70
## 9595                    Switzerland 2011          3.80000           82.60
## 9596                          Syria 2011         12.80000           75.10
## 9597                     Tajikistan 2011         43.30000           70.10
## 9598                       Tanzania 2011         40.40000           61.70
## 9599                       Thailand 2011         12.00000           74.30
## 9600                    Timor-Leste 2011         51.10000           71.30
## 9601                           Togo 2011         57.90000           59.60
## 9602                          Tonga 2011         15.00000           70.80
## 9603            Trinidad and Tobago 2011         20.40000           71.90
## 9604                        Tunisia 2011         14.20000           77.20
## 9605                         Turkey 2011         15.30000           78.80
## 9606                   Turkmenistan 2011         48.90000           68.50
## 9607                         Uganda 2011         46.30000           58.60
## 9608                        Ukraine 2011          9.60000           71.10
## 9609           United Arab Emirates 2011          7.00000           75.50
## 9610                 United Kingdom 2011          4.20000           80.50
## 9611                  United States 2011          6.10000           78.90
## 9612                        Uruguay 2011         10.30000           76.30
## 9613                     Uzbekistan 2011         38.40000           70.60
## 9614                        Vanuatu 2011         24.00000           64.10
## 9615                      Venezuela 2011         14.10000           74.80
## 9616             West Bank and Gaza 2011         19.80000           74.20
## 9617                        Vietnam 2011         19.30000           74.70
## 9618                          Yemen 2011         40.30000           66.60
## 9619                         Zambia 2011         51.10000           53.70
## 9620                       Zimbabwe 2011         54.00000           51.60
## 9621                        Albania 2012         13.80000           77.50
## 9622                        Algeria 2012         22.40000           76.20
## 9623                         Angola 2012        104.10000           58.50
## 9624            Antigua and Barbuda 2012          6.80000           76.10
## 9625                      Argentina 2012         12.30000           76.10
## 9626                        Armenia 2012         14.60000           73.90
## 9627                          Aruba 2012               NA           75.32
## 9628                      Australia 2012          3.60000           82.40
## 9629                        Austria 2012          3.30000           80.90
## 9630                     Azerbaijan 2012         31.20000           71.50
## 9631                        Bahamas 2012         10.90000           72.70
## 9632                        Bahrain 2012          6.30000           79.00
## 9633                     Bangladesh 2012         35.30000           69.40
## 9634                       Barbados 2012         13.00000           75.40
## 9635                        Belarus 2012          4.00000           70.40
## 9636                        Belgium 2012          3.50000           80.30
## 9637                         Belize 2012         15.50000           71.30
## 9638                          Benin 2012         68.50000           61.40
## 9639                         Bhutan 2012         30.80000           71.90
## 9640                        Bolivia 2012         34.00000           72.40
## 9641         Bosnia and Herzegovina 2012          5.90000           78.40
## 9642                       Botswana 2012         38.20000           56.50
## 9643                         Brazil 2012         14.30000           74.00
## 9644                         Brunei 2012          8.10000           76.90
## 9645                       Bulgaria 2012         10.50000           74.50
## 9646                   Burkina Faso 2012         65.40000           59.90
## 9647                        Burundi 2012         59.50000           61.10
## 9648                       Cambodia 2012         30.70000           68.20
## 9649                       Cameroon 2012         62.40000           58.50
## 9650                         Canada 2012          4.70000           81.60
## 9651                     Cape Verde 2012         22.40000           71.90
## 9652       Central African Republic 2012         97.70000           48.50
## 9653                           Chad 2012         90.20000           56.30
## 9654                          Chile 2012          7.40000           79.10
## 9655                          China 2012         11.50000           75.30
## 9656                       Colombia 2012         14.90000           77.30
## 9657                        Comoros 2012         59.80000           67.60
## 9658               Congo, Dem. Rep. 2012         80.50000           59.10
## 9659                    Congo, Rep. 2012         37.60000           61.30
## 9660                     Costa Rica 2012          8.80000           80.00
## 9661                  Cote d'Ivoire 2012         72.80000           57.50
## 9662                        Croatia 2012          4.10000           77.40
## 9663                           Cuba 2012          4.60000           78.00
## 9664                         Cyprus 2012          2.80000           81.50
## 9665                 Czech Republic 2012          3.20000           78.10
## 9666                        Denmark 2012          3.20000           80.30
## 9667                       Djibouti 2012         58.90000           62.80
## 9668             Dominican Republic 2012         27.10000           74.70
## 9669                        Ecuador 2012         20.10000           75.50
## 9670                          Egypt 2012         22.60000           70.50
## 9671                    El Salvador 2012         16.00000           74.50
## 9672              Equatorial Guinea 2012         74.30000           59.40
## 9673                        Eritrea 2012         37.00000           60.30
## 9674                        Estonia 2012          2.90000           76.70
## 9675                       Ethiopia 2012         46.20000           63.60
## 9676                           Fiji 2012         20.00000           65.40
## 9677                        Finland 2012          2.20000           80.50
## 9678                         France 2012          3.50000           81.60
## 9679               French Polynesia 2012               NA           76.05
## 9680                          Gabon 2012         39.70000           63.90
## 9681                         Gambia 2012         50.10000           67.50
## 9682                        Georgia 2012         12.80000           72.40
## 9683                        Germany 2012          3.30000           80.60
## 9684                          Ghana 2012         47.00000           64.10
## 9685                         Greece 2012          3.90000           80.60
## 9686                      Greenland 2012               NA           71.60
## 9687                        Grenada 2012         11.50000           71.10
## 9688                      Guatemala 2012         26.60000           72.10
## 9689                         Guinea 2012         66.80000           58.50
## 9690                  Guinea-Bissau 2012         67.40000           54.80
## 9691                         Guyana 2012         33.30000           65.90
## 9692                          Haiti 2012         56.20000           62.90
## 9693                       Honduras 2012         19.20000           72.30
## 9694               Hong Kong, China 2012               NA           83.20
## 9695                        Hungary 2012          5.40000           75.50
## 9696                        Iceland 2012          1.70000           83.10
## 9697                          India 2012         42.60000           66.10
## 9698                      Indonesia 2012         25.30000           70.30
## 9699                           Iran 2012         15.10000           74.30
## 9700                           Iraq 2012         28.70000           68.10
## 9701                        Ireland 2012          3.40000           81.10
## 9702                         Israel 2012          3.40000           82.10
## 9703                          Italy 2012          3.20000           82.00
## 9704                        Jamaica 2012         14.80000           74.70
## 9705                          Japan 2012          2.20000           82.90
## 9706                         Jordan 2012         16.80000           78.20
## 9707                     Kazakhstan 2012         16.00000           69.70
## 9708                          Kenya 2012         39.20000           64.30
## 9709                       Kiribati 2012         46.60000           62.30
## 9710                    South Korea 2012          3.30000           80.70
## 9711                         Kuwait 2012          8.50000           79.10
## 9712                Kyrgyz Republic 2012         22.90000           69.00
## 9713                            Lao 2012         55.40000           65.60
## 9714                         Latvia 2012          7.60000           75.10
## 9715                        Lebanon 2012          7.90000           78.50
## 9716                        Lesotho 2012         72.30000           46.10
## 9717                        Liberia 2012         59.40000           62.30
## 9718                          Libya 2012         12.90000           75.50
## 9719                      Lithuania 2012          4.50000           74.70
## 9720                     Luxembourg 2012          1.60000           81.70
## 9721                   Macao, China 2012               NA           80.19
## 9722                 Macedonia, FYR 2012          6.50000           75.80
## 9723                     Madagascar 2012         39.30000           62.80
## 9724                         Malawi 2012         50.20000           58.00
## 9725                       Malaysia 2012          6.60000           74.70
## 9726                       Maldives 2012          9.20000           79.80
## 9727                           Mali 2012         79.20000           59.80
## 9728                          Malta 2012          5.50000           81.60
## 9729                     Mauritania 2012         68.10000           69.10
## 9730                      Mauritius 2012         12.80000           74.10
## 9731                         Mexico 2012         13.10000           75.70
## 9732          Micronesia, Fed. Sts. 2012         31.10000           68.60
## 9733                        Moldova 2012         14.30000           72.40
## 9734                       Mongolia 2012         22.10000           66.00
## 9735                     Montenegro 2012          5.30000           76.80
## 9736                        Morocco 2012         26.40000           74.10
## 9737                     Mozambique 2012         63.60000           54.50
## 9738                        Namibia 2012         35.50000           63.60
## 9739                          Nepal 2012         33.10000           69.70
## 9740                    Netherlands 2012          3.50000           81.00
## 9741                  New Caledonia 2012               NA           76.09
## 9742                    New Zealand 2012          4.90000           81.10
## 9743                      Nicaragua 2012         20.60000           77.50
## 9744                          Niger 2012         61.60000           60.00
## 9745                        Nigeria 2012         76.20000           62.60
## 9746                         Norway 2012          2.30000           81.60
## 9747                           Oman 2012         10.00000           76.60
## 9748                       Pakistan 2012         70.60000           65.10
## 9749                         Panama 2012         16.00000           77.50
## 9750               Papua New Guinea 2012         48.00000           59.70
## 9751                       Paraguay 2012         19.20000           74.10
## 9752                           Peru 2012         14.90000           78.70
## 9753                    Philippines 2012         23.90000           70.30
## 9754                         Poland 2012          4.60000           76.70
## 9755                       Portugal 2012          3.10000           80.40
## 9756                    Puerto Rico 2012               NA           77.70
## 9757                          Qatar 2012          7.30000           79.90
## 9758                        Romania 2012         10.90000           74.70
## 9759                         Russia 2012          9.30000           70.40
## 9760                         Rwanda 2012         37.10000           65.50
## 9761                      St. Lucia 2012         13.60000           74.70
## 9762 St. Vincent and the Grenadines 2012         17.80000           71.10
## 9763                          Samoa 2012         15.80000           72.70
## 9764                   Saudi Arabia 2012         13.80000           79.20
## 9765                        Senegal 2012         44.10000           64.60
## 9766                         Serbia 2012          6.20000           75.40
## 9767                     Seychelles 2012         12.20000           73.70
## 9768                   Sierra Leone 2012         97.90000           56.40
## 9769                      Singapore 2012          2.20000           81.60
## 9770                Slovak Republic 2012          6.50000           76.50
## 9771                       Slovenia 2012          2.40000           80.10
## 9772                Solomon Islands 2012         25.50000           63.30
## 9773                   South Africa 2012         36.80000           59.00
## 9774                          Spain 2012          3.70000           82.20
## 9775                      Sri Lanka 2012          8.90000           76.80
## 9776                          Sudan 2012         51.10000           66.70
## 9777                       Suriname 2012         20.80000           71.30
## 9778                      Swaziland 2012         51.50000           49.10
## 9779                         Sweden 2012          2.40000           81.80
## 9780                    Switzerland 2012          3.70000           82.70
## 9781                          Syria 2012         12.60000           68.10
## 9782                     Tajikistan 2012         42.10000           70.80
## 9783                       Tanzania 2012         38.80000           61.90
## 9784                       Thailand 2012         11.60000           74.40
## 9785                    Timor-Leste 2012         49.30000           71.70
## 9786                           Togo 2012         56.50000           60.30
## 9787                          Tonga 2012         15.00000           71.00
## 9788            Trinidad and Tobago 2012         19.70000           72.00
## 9789                        Tunisia 2012         13.60000           77.40
## 9790                         Turkey 2012         14.20000           79.10
## 9791                   Turkmenistan 2012         47.60000           68.90
## 9792                         Uganda 2012         42.50000           59.30
## 9793                        Ukraine 2012          9.10000           71.20
## 9794           United Arab Emirates 2012          6.70000           75.50
## 9795                 United Kingdom 2012          4.10000           80.70
## 9796                  United States 2012          6.10000           79.00
## 9797                        Uruguay 2012         10.00000           76.30
## 9798                     Uzbekistan 2012         37.20000           70.90
## 9799                        Vanuatu 2012         24.00000           64.40
## 9800                      Venezuela 2012         13.80000           74.60
## 9801             West Bank and Gaza 2012         19.40000           74.20
## 9802                        Vietnam 2012         18.80000           74.90
## 9803                          Yemen 2012         38.40000           66.70
## 9804                         Zambia 2012         49.00000           54.70
## 9805                       Zimbabwe 2012         49.40000           54.20
## 9806                        Albania 2013         13.30000           77.70
## 9807                        Algeria 2013         22.10000           76.30
## 9808                         Angola 2013        101.40000           58.80
## 9809            Antigua and Barbuda 2013          6.40000           76.20
## 9810                      Argentina 2013         11.90000           76.20
## 9811                        Armenia 2013         13.80000           74.30
## 9812                          Aruba 2013               NA           75.46
## 9813                      Australia 2013          3.40000           82.40
## 9814                        Austria 2013          3.20000           81.10
## 9815                     Azerbaijan 2013         30.00000           72.10
## 9816                        Bahamas 2013         10.50000           72.90
## 9817                        Bahrain 2013          5.90000           79.10
## 9818                     Bangladesh 2013         33.50000           69.80
## 9819                       Barbados 2013         12.70000           75.50
## 9820                        Belarus 2013          3.80000           70.60
## 9821                        Belgium 2013          3.40000           80.40
## 9822                         Belize 2013         15.10000           71.30
## 9823                          Benin 2013         67.20000           61.70
## 9824                         Bhutan 2013         29.50000           72.20
## 9825                        Bolivia 2013         32.80000           72.70
## 9826         Bosnia and Herzegovina 2013          5.60000           78.60
## 9827                       Botswana 2013         36.40000           56.90
## 9828                         Brazil 2013         14.30000           74.10
## 9829                         Brunei 2013          8.30000           76.90
## 9830                       Bulgaria 2013         10.10000           74.60
## 9831                   Burkina Faso 2013         63.70000           60.30
## 9832                        Burundi 2013         57.60000           61.30
## 9833                       Cambodia 2013         28.30000           68.70
## 9834                       Cameroon 2013         60.40000           59.00
## 9835                         Canada 2013          4.60000           81.60
## 9836                     Cape Verde 2013         21.90000           72.30
## 9837       Central African Republic 2013         96.10000           47.80
## 9838                           Chad 2013         88.40000           56.60
## 9839                          Chile 2013          7.30000           79.10
## 9840                          China 2013         10.60000           75.70
## 9841                       Colombia 2013         14.50000           77.50
## 9842                        Comoros 2013         58.20000           67.80
## 9843               Congo, Dem. Rep. 2013         78.30000           59.60
## 9844                    Congo, Rep. 2013         35.90000           61.50
## 9845                     Costa Rica 2013          8.70000           80.10
## 9846                  Cote d'Ivoire 2013         70.60000           58.10
## 9847                        Croatia 2013          4.00000           77.60
## 9848                           Cuba 2013          4.40000           78.00
## 9849                         Cyprus 2013          2.70000           81.70
## 9850                 Czech Republic 2013          3.00000           78.30
## 9851                        Denmark 2013          3.10000           80.30
## 9852                       Djibouti 2013         57.40000           63.10
## 9853             Dominican Republic 2013         26.70000           74.90
## 9854                        Ecuador 2013         19.50000           75.60
## 9855                          Egypt 2013         21.80000           71.00
## 9856                    El Salvador 2013         15.40000           74.60
## 9857              Equatorial Guinea 2013         72.20000           60.50
## 9858                        Eritrea 2013         36.00000           60.40
## 9859                        Estonia 2013          2.70000           77.50
## 9860                       Ethiopia 2013         44.50000           64.20
## 9861                           Fiji 2013         19.70000           65.60
## 9862                        Finland 2013          2.10000           80.80
## 9863                         France 2013          3.60000           81.70
## 9864               French Polynesia 2013               NA           76.26
## 9865                          Gabon 2013         38.00000           64.40
## 9866                         Gambia 2013         49.40000           67.80
## 9867                        Georgia 2013         12.00000           72.50
## 9868                        Germany 2013          3.30000           80.70
## 9869                          Ghana 2013         45.50000           64.50
## 9870                         Greece 2013          3.80000           81.00
## 9871                      Greenland 2013               NA           71.80
## 9872                        Grenada 2013         11.40000           71.20
## 9873                      Guatemala 2013         25.90000           72.30
## 9874                         Guinea 2013         64.70000           58.80
## 9875                  Guinea-Bissau 2013         64.80000           55.10
## 9876                         Guyana 2013         33.00000           66.20
## 9877                          Haiti 2013         54.80000           63.40
## 9878                       Honduras 2013         18.60000           72.60
## 9879               Hong Kong, China 2013               NA           83.38
## 9880                        Hungary 2013          5.40000           76.10
## 9881                        Iceland 2013          1.60000           83.20
## 9882                          India 2013         40.90000           66.50
## 9883                      Indonesia 2013         24.40000           70.60
## 9884                           Iran 2013         14.50000           74.50
## 9885                           Iraq 2013         27.90000           68.30
## 9886                        Ireland 2013          3.20000           81.50
## 9887                         Israel 2013          3.30000           82.00
## 9888                          Italy 2013          3.10000           82.10
## 9889                        Jamaica 2013         14.40000           74.80
## 9890                          Japan 2013          2.10000           83.00
## 9891                         Jordan 2013         16.30000           78.30
## 9892                     Kazakhstan 2013         14.60000           70.00
## 9893                          Kenya 2013         38.00000           64.80
## 9894                       Kiribati 2013         45.60000           62.60
## 9895                    South Korea 2013          3.20000           80.90
## 9896                         Kuwait 2013          8.10000           79.70
## 9897                Kyrgyz Republic 2013         21.40000           69.40
## 9898                            Lao 2013         53.70000           66.10
## 9899                         Latvia 2013          7.40000           75.00
## 9900                        Lebanon 2013          7.60000           78.60
## 9901                        Lesotho 2013         71.90000           45.60
## 9902                        Liberia 2013         56.90000           62.90
## 9903                          Libya 2013         12.40000           75.80
## 9904                      Lithuania 2013          4.00000           74.90
## 9905                     Luxembourg 2013          1.60000           81.90
## 9906                   Macao, China 2013               NA           80.40
## 9907                 Macedonia, FYR 2013          5.80000           76.00
## 9908                     Madagascar 2013         38.10000           63.00
## 9909                         Malawi 2013         47.30000           59.30
## 9910                       Malaysia 2013          6.40000           74.90
## 9911                       Maldives 2013          8.40000           79.90
## 9912                           Mali 2013         77.60000           59.80
## 9913                          Malta 2013          5.30000           81.70
## 9914                     Mauritania 2013         67.20000           69.30
## 9915                      Mauritius 2013         12.60000           74.20
## 9916                         Mexico 2013         12.50000           75.40
## 9917          Micronesia, Fed. Sts. 2013         30.20000           68.70
## 9918                        Moldova 2013         14.10000           73.30
## 9919                       Mongolia 2013         20.90000           66.40
## 9920                     Montenegro 2013          4.90000           76.90
## 9921                        Morocco 2013         25.50000           74.30
## 9922                     Mozambique 2013         60.90000           54.80
## 9923                        Namibia 2013         34.30000           63.90
## 9924                          Nepal 2013         31.70000           69.90
## 9925                    Netherlands 2013          3.30000           81.20
## 9926                  New Caledonia 2013               NA           76.31
## 9927                    New Zealand 2013          4.90000           81.40
## 9928                      Nicaragua 2013         20.00000           77.60
## 9929                          Niger 2013         59.80000           60.40
## 9930                        Nigeria 2013         73.80000           63.30
## 9931                         Norway 2013          2.30000           81.60
## 9932                           Oman 2013         10.00000           76.80
## 9933                       Pakistan 2013         69.10000           65.40
## 9934                         Panama 2013         15.50000           77.60
## 9935               Papua New Guinea 2013         47.00000           60.20
## 9936                       Paraguay 2013         18.60000           74.10
## 9937                           Peru 2013         14.20000           79.10
## 9938                    Philippines 2013         23.30000           70.30
## 9939                         Poland 2013          4.50000           77.30
## 9940                       Portugal 2013          3.10000           80.70
## 9941                    Puerto Rico 2013               NA           77.90
## 9942                          Qatar 2013          7.20000           79.90
## 9943                        Romania 2013         10.50000           74.90
## 9944                         Russia 2013          8.90000           70.80
## 9945                         Rwanda 2013         34.70000           65.60
## 9946                      St. Lucia 2013         13.30000           74.70
## 9947 St. Vincent and the Grenadines 2013         17.40000           70.80
## 9948                          Samoa 2013         15.60000           73.00
## 9949                   Saudi Arabia 2013         13.30000           79.30
## 9950                        Senegal 2013         43.10000           64.80
## 9951                         Serbia 2013          6.00000           75.70
## 9952                     Seychelles 2013         12.10000           73.80
## 9953                   Sierra Leone 2013         93.80000           57.10
## 9954                      Singapore 2013          2.20000           81.70
## 9955                Slovak Republic 2013          6.30000           77.00
## 9956                       Slovenia 2013          2.30000           80.30
## 9957                Solomon Islands 2013         24.90000           63.50
## 9958                   South Africa 2013         35.30000           60.70
## 9959                          Spain 2013          3.70000           82.50
## 9960                      Sri Lanka 2013          8.70000           77.10
## 9961                          Sudan 2013         49.90000           66.90
## 9962                       Suriname 2013         20.10000           71.60
## 9963                      Swaziland 2013         48.40000           49.40
## 9964                         Sweden 2013          2.40000           81.90
## 9965                    Switzerland 2013          3.60000           82.80
## 9966                          Syria 2013         12.10000           69.00
## 9967                     Tajikistan 2013         40.90000           71.40
## 9968                       Tanzania 2013         37.60000           62.70
## 9969                       Thailand 2013         11.20000           74.40
## 9970                    Timor-Leste 2013         47.60000           72.00
## 9971                           Togo 2013         55.00000           60.70
## 9972                          Tonga 2013         14.90000           71.20
## 9973            Trinidad and Tobago 2013         19.20000           72.10
## 9974                        Tunisia 2013         13.10000           77.50
## 9975                         Turkey 2013         13.20000           78.80
## 9976                   Turkmenistan 2013         46.20000           69.20
## 9977                         Uganda 2013         41.60000           60.10
## 9978                        Ukraine 2013          8.60000           71.30
## 9979           United Arab Emirates 2013          6.40000           75.40
## 9980                 United Kingdom 2013          3.90000           80.80
## 9981                  United States 2013          5.90000           79.10
## 9982                        Uruguay 2013          9.50000           76.40
## 9983                     Uzbekistan 2013         36.10000           71.20
## 9984                        Vanuatu 2013         23.80000           64.60
## 9985                      Venezuela 2013         13.50000           74.70
## 9986             West Bank and Gaza 2013         19.00000           74.40
## 9987                        Vietnam 2013         18.30000           75.00
## 9988                          Yemen 2013         36.70000           67.10
## 9989                         Zambia 2013         46.50000           55.60
## 9990                       Zimbabwe 2013         48.80000           55.70
## 9991                        Albania 2014         12.90000           77.90
## 9992                        Algeria 2014         22.00000           76.30
## 9993                         Angola 2014         98.80000           59.20
## 9994            Antigua and Barbuda 2014          6.10000           76.30
## 9995                      Argentina 2014         11.50000           76.30
## 9996                        Armenia 2014         13.20000           74.50
## 9997                          Aruba 2014               NA           75.59
## 9998                      Australia 2014          3.20000           82.30
## 9999                        Austria 2014          3.00000           81.20
##      fertility population          gdp continent                    region
## 1         6.19    1636054           NA    Europe           Southern Europe
## 2         7.65   11124892 1.382815e+10    Africa           Northern Africa
## 3         7.32    5270844           NA    Africa             Middle Africa
## 4         4.43      54681           NA  Americas                 Caribbean
## 5         3.11   20619075 1.083223e+11  Americas             South America
## 6         4.55    1867396           NA      Asia              Western Asia
## 7         4.82      54208           NA  Americas                 Caribbean
## 8         3.45   10292328 9.667786e+10   Oceania Australia and New Zealand
## 9         2.70    7065525 5.239270e+10    Europe            Western Europe
## 10        5.57    3897889           NA      Asia              Western Asia
## 11        4.50     109526 1.306269e+09  Americas                 Caribbean
## 12        7.09     162501           NA      Asia              Western Asia
## 13        6.73   48200702 1.276723e+10      Asia             Southern Asia
## 14        4.33     230934 7.841204e+08  Americas                 Caribbean
## 15        2.74    8190027           NA    Europe            Eastern Europe
## 16        2.60    9140563 6.823667e+10    Europe            Western Europe
## 17        6.50      92068 8.653230e+07  Americas           Central America
## 18        6.28    2431620 6.217971e+08    Africa            Western Africa
## 19        6.67     224108           NA      Asia             Southern Asia
## 20        6.70    3693451 3.001816e+09  Americas             South America
## 21        4.05    3214520           NA    Europe           Southern Europe
## 22        6.62     524029 1.244609e+08    Africa           Southern Africa
## 23        6.21   72493585 1.053434e+11  Americas             South America
## 24        6.49      81825           NA      Asia        South-Eastern Asia
## 25        2.25    7866472           NA    Europe            Eastern Europe
## 26        6.29    4829291 5.966122e+08    Africa            Western Africa
## 27        6.95    2786740 3.411268e+08    Africa            Eastern Africa
## 28        6.97    5722370           NA      Asia        South-Eastern Asia
## 29        5.65    5361367 2.537944e+09    Africa             Middle Africa
## 30        3.91   17909232 1.678949e+11  Americas          Northern America
## 31        6.89     202316           NA    Africa            Western Africa
## 32        5.84    1503501 5.349827e+08    Africa             Middle Africa
## 33        6.25    3002596 7.501734e+08    Africa             Middle Africa
## 34        5.58    7695692 1.408717e+10  Americas             South America
## 35        3.99  644450173 7.034853e+10      Asia              Eastern Asia
## 36        6.81   16480384 1.901766e+10  Americas             South America
## 37        6.79     188732           NA    Africa            Eastern Africa
## 38        6.00   15248246 4.992962e+09    Africa             Middle Africa
## 39        5.88    1013581 6.261270e+08    Africa             Middle Africa
## 40        7.31    1333042 2.398494e+09  Americas           Central America
## 41        7.35    3474724 2.003623e+09    Africa            Western Africa
## 42        2.33    4192634           NA    Europe           Southern Europe
## 43        4.18    7141129           NA  Americas                 Caribbean
## 44        3.50     572929           NA      Asia              Western Asia
## 45        2.30    9578587           NA    Europe            Eastern Europe
## 46        2.54    4580708 5.216475e+10    Europe           Northern Europe
## 47        6.46      83636           NA    Africa            Eastern Africa
## 48        7.56    3294039 3.019308e+09  Americas                 Caribbean
## 49        6.69    4545548 3.641530e+09  Americas             South America
## 50        6.63   27072397 1.200850e+10    Africa           Northern Africa
## 51        6.73    2762897 4.017742e+09  Americas           Central America
## 52        5.51     252115           NA    Africa             Middle Africa
## 53        6.90    1407631           NA    Africa            Eastern Africa
## 54        1.95    1216831           NA    Europe           Northern Europe
## 55        6.88   22151218           NA    Africa            Eastern Africa
## 56        6.46     393383 4.370797e+08   Oceania                 Melanesia
## 57        2.71    4430228 3.236309e+10    Europe           Northern Europe
## 58        2.77   45865699 3.497782e+11    Europe            Western Europe
## 59        5.66      78083           NA   Oceania                 Polynesia
## 60        4.38     499189 8.872898e+08    Africa             Middle Africa
## 61        5.57     367929           NA    Africa            Western Africa
## 62        2.96    4159769           NA      Asia              Western Asia
## 63        2.41   73179665           NA    Europe            Western Europe
## 64        6.75    6652285 1.902005e+09    Africa            Western Africa
## 65        2.22    8311386 2.820839e+10    Europe           Southern Europe
## 66        7.25      31238           NA  Americas          Northern America
## 67        6.74      89861           NA  Americas                 Caribbean
## 68        6.53    4127555 3.989090e+09  Americas           Central America
## 69        6.10    3577413           NA    Africa            Western Africa
## 70        5.83     616407           NA    Africa            Western Africa
## 71        5.67     564222 3.858862e+08  Americas             South America
## 72        6.32    3866160           NA  Americas                 Caribbean
## 73        7.46    2002333 1.502039e+09  Americas           Central America
## 74        5.16    3075752           NA      Asia              Eastern Asia
## 75        2.05   10001270 1.048686e+10    Europe            Eastern Europe
## 76        4.13     175520 1.775037e+09    Europe           Northern Europe
## 77        5.87  449661874 8.104265e+10      Asia             Southern Asia
## 78        5.67   87792512 1.844892e+10      Asia        South-Eastern Asia
## 79        6.93   21906905           NA      Asia             Southern Asia
## 80        6.25    7289759           NA      Asia              Western Asia
## 81        3.86    2819059           NA    Europe           Northern Europe
## 82        3.84    2089891 1.231316e+10      Asia              Western Asia
## 83        2.37   49714962 2.935406e+11    Europe           Southern Europe
## 84        5.42    1630914           NA  Americas                 Caribbean
## 85        2.00   92500754 7.191651e+11      Asia              Eastern Asia
## 86        7.69     888632           NA      Asia              Western Asia
## 87        4.56    9995997           NA      Asia              Central Asia
## 88        7.95    8105440 2.116485e+09    Africa            Eastern Africa
## 89        6.95      41234           NA   Oceania                Micronesia
## 90        6.16   25074028 2.892830e+10      Asia              Eastern Asia
## 91        7.25     261962           NA      Asia              Western Asia
## 92        5.17    2172500           NA      Asia              Central Asia
## 93        5.96    2119944           NA      Asia        South-Eastern Asia
## 94        1.90    2132368           NA    Europe           Northern Europe
## 95        5.74    1804927           NA      Asia              Western Asia
## 96        5.84     851412 1.126027e+08    Africa           Southern Africa
## 97        6.41    1120314 6.783959e+08    Africa            Western Africa
## 98        7.54    1434576           NA    Africa           Northern Africa
## 99        2.55    2770737           NA    Europe           Northern Europe
## 100       2.35     314586 4.302303e+09    Europe            Western Europe
## 101       4.95     171456           NA      Asia              Eastern Asia
## 102       3.72    1488664           NA    Europe           Southern Europe
## 103       7.30    5099371 2.087990e+09    Africa            Eastern Africa
## 104       6.91    3618604 3.477121e+08    Africa            Eastern Africa
## 105       6.19    8160975 6.631037e+09      Asia        South-Eastern Asia
## 106       7.02      89875           NA      Asia             Southern Asia
## 107       6.70    5263730           NA    Africa            Western Africa
## 108       3.53     312788           NA    Europe           Southern Europe
## 109       6.78     858170 3.193533e+08    Africa            Western Africa
## 110       6.17     660023           NA    Africa            Eastern Africa
## 111       6.78   38174114 9.435482e+10  Americas           Central America
## 112       6.93      44539           NA   Oceania                Micronesia
## 113       3.33    3003557           NA    Europe            Eastern Europe
## 114       6.95     955514           NA      Asia              Eastern Asia
## 115       3.52     487416           NA    Europe           Southern Europe
## 116       7.07   12328534 7.532416e+09    Africa           Northern Africa
## 117       6.60    7493278           NA    Africa            Eastern Africa
## 118       6.15     602545           NA    Africa           Southern Africa
## 119       5.99   10056945 1.354713e+09      Asia             Southern Asia
## 120       3.12   11418652 9.835929e+10    Europe            Western Europe
## 121       5.22      78058           NA   Oceania                 Melanesia
## 122       3.54    2371999           NA   Oceania Australia and New Zealand
## 123       7.34    1774696 2.103503e+09  Americas           Central America
## 124       7.05    3395212 1.020197e+09    Africa            Western Africa
## 125       6.35   45211614 1.283641e+10    Africa            Western Africa
## 126       2.88    3582016 3.830265e+10    Europe           Northern Europe
## 127       7.25     551737 5.388296e+08      Asia              Western Asia
## 128       6.60   44911810 8.608437e+09      Asia             Southern Asia
## 129       5.87    1132924 1.930103e+09  Americas           Central America
## 130       6.28    1966957 8.370556e+08   Oceania                 Melanesia
## 131       6.50    1902871 1.263290e+09  Americas             South America
## 132       6.88   10061519 1.635628e+10  Americas             South America
## 133       7.15   26273023 1.799083e+10      Asia        South-Eastern Asia
## 134       2.97   29716363           NA    Europe            Eastern Europe
## 135       3.16    8875311 2.098103e+10    Europe           Southern Europe
## 136       4.66    2355570 8.883564e+09  Americas                 Caribbean
## 137       6.97      47309           NA      Asia              Western Asia
## 138       2.32   18613835           NA    Europe            Eastern Europe
## 139       2.56  119860289           NA    Europe            Eastern Europe
## 140       8.19    2933424 6.233783e+08    Africa            Eastern Africa
## 141       6.97      89901           NA  Americas                 Caribbean
## 142       7.22      80948 1.072156e+08  Americas                 Caribbean
## 143       7.65     108645           NA   Oceania                 Polynesia
## 144       7.22    4086539           NA      Asia              Western Asia
## 145       6.95    3177560 1.870218e+09    Africa            Western Africa
## 146       2.63    7556730           NA    Europe           Southern Europe
## 147       5.27      41538 4.898140e+07    Africa            Eastern Africa
## 148       6.03    2181701 4.885261e+08    Africa            Western Africa
## 149       5.82    1633718 3.705795e+09      Asia        South-Eastern Asia
## 150       3.09    4137224           NA    Europe            Eastern Europe
## 151       2.32    1586632           NA    Europe           Southern Europe
## 152       6.39     117869           NA   Oceania                 Melanesia
## 153       6.17   17396367 3.833607e+10    Africa           Southern Africa
## 154       2.77   30450994 1.130215e+11    Europe           Southern Europe
## 155       5.54    9896172 2.708601e+09      Asia             Southern Asia
## 156       6.69    7527450 3.292301e+09    Africa           Northern Africa
## 157       6.61     289972           NA  Americas             South America
## 158       6.72     349233           NA    Africa           Southern Africa
## 159       2.20    7479602 8.502873e+10    Europe           Northern Europe
## 160       2.52    5296120           NA    Europe            Western Europe
## 161       7.47    4592777 2.203477e+09      Asia              Western Asia
## 162       6.24    2064035           NA      Asia              Central Asia
## 163       6.81   10074490           NA    Africa            Eastern Africa
## 164       6.15   27397178 8.764727e+09      Asia        South-Eastern Asia
## 165       6.37     499525           NA      Asia        South-Eastern Asia
## 166       6.52    1580513 2.785757e+08    Africa            Western Africa
## 167       7.36      61600           NA   Oceania                 Polynesia
## 168       5.26     848481 2.811587e+09  Americas                 Caribbean
## 169       7.04    4176266           NA    Africa           Northern Africa
## 170       6.30   27553280 4.456605e+10      Asia              Western Asia
## 171       6.42    1593501           NA      Asia              Central Asia
## 172       7.00    6788211           NA    Africa            Eastern Africa
## 173       2.42   42662150           NA    Europe            Eastern Europe
## 174       6.93      92612           NA      Asia              Western Asia
## 175       2.69   52410496 5.253283e+11    Europe           Northern Europe
## 176       3.67  186176524 2.479391e+12  Americas          Northern America
## 177       2.88    2538651 1.061461e+10  Americas             South America
## 178       6.71    8789492           NA      Asia              Central Asia
## 179       7.20      63701           NA   Oceania                 Melanesia
## 180       6.62    8146845 4.111873e+10  Americas             South America
## 181       7.69    1069399           NA      Asia              Western Asia
## 182       6.35   32670623           NA      Asia        South-Eastern Asia
## 183       7.29    5166311           NA      Asia              Western Asia
## 184       7.02    3049586 1.666817e+09    Africa            Eastern Africa
## 185       7.16    3752390 1.459732e+09    Africa            Eastern Africa
## 186       6.08    1685901           NA    Europe           Southern Europe
## 187       7.65   11404859 1.194677e+10    Africa           Northern Africa
## 188       7.35    5367287           NA    Africa             Middle Africa
## 189       4.39      55403           NA  Americas                 Caribbean
## 190       3.10   20953079 1.142019e+11  Americas             South America
## 191       4.51    1934239           NA      Asia              Western Asia
## 192       4.66      55435           NA  Americas                 Caribbean
## 193       3.55   10494911 9.895041e+10   Oceania Australia and New Zealand
## 194       2.79    7105654 5.529420e+10    Europe            Western Europe
## 195       5.60    4030130           NA      Asia              Western Asia
## 196       4.50     115108 1.445611e+09  Americas                 Caribbean
## 197       7.13     167924           NA      Asia              Western Asia
## 198       6.76   49593610 1.354069e+10      Asia             Southern Asia
## 199       4.31     231674 8.444704e+08  Americas                 Caribbean
## 200       2.73    8274486           NA    Europe            Eastern Europe
## 201       2.63    9200393 7.163499e+10    Europe            Western Europe
## 202       6.48      94701 9.076570e+07  Americas           Central America
## 203       6.34    2466002 6.413295e+08    Africa            Western Africa
## 204       6.67     229297           NA      Asia             Southern Asia
## 205       6.67    3764815 3.064253e+09  Americas             South America
## 206       3.95    3277096           NA    Europe           Southern Europe
## 207       6.63     536576 1.323511e+08    Africa           Southern Africa
## 208       6.19   74706888 1.161684e+11  Americas             South America
## 209       6.49      85687           NA      Asia        South-Eastern Asia
## 210       2.23    7935058           NA    Europe            Eastern Europe
## 211       6.32    4894578 6.207388e+08    Africa            Western Africa
## 212       7.00    2840375 2.942350e+08    Africa            Eastern Africa
## 213       6.96    5872247           NA      Asia        South-Eastern Asia
## 214       5.71    5474509 2.785779e+09    Africa             Middle Africa
## 215       3.85   18295922 1.732059e+11  Americas          Northern America
## 216       6.92     205958           NA    Africa            Western Africa
## 217       5.87    1529229 5.614799e+08    Africa             Middle Africa
## 218       6.27    3061423 7.606589e+08    Africa             Middle Africa
## 219       5.54    7873504 1.465769e+10  Americas             South America
## 220       3.28  654625069 5.128275e+10      Asia              Eastern Asia
## 221       6.80   16982313 2.001901e+10  Americas             South America
## 222       6.85     191828           NA    Africa            Eastern Africa
## 223       6.02   15637715 4.451157e+09    Africa             Middle Africa
## 224       5.92    1039966 6.785380e+08    Africa             Middle Africa
## 225       7.30    1381920 2.375566e+09  Americas           Central America
## 226       7.43    3602075 2.202623e+09    Africa            Western Africa
## 227       2.30    4222502           NA    Europe           Southern Europe
## 228       4.36    7289828           NA  Americas                 Caribbean
## 229       3.47     576395           NA      Asia              Western Asia
## 230       2.27    9626727           NA    Europe            Eastern Europe
## 231       2.55    4613769 5.549225e+10    Europe           Northern Europe
## 232       6.49      88499           NA    Africa            Eastern Africa
## 233       7.49    3406299 2.949464e+09  Americas                 Caribbean
## 234       6.67    4676858 3.697722e+09  Americas             South America
## 235       6.61   27810001 1.253692e+10    Africa           Northern Africa
## 236       6.75    2843246 4.159511e+09  Americas           Central America
## 237       5.52     255100           NA    Africa             Middle Africa
## 238       6.87    1441297           NA    Africa            Eastern Africa
## 239       1.95    1230521           NA    Europe           Northern Europe
## 240       6.88   22671131           NA    Africa            Eastern Africa
## 241       6.28     407152 4.524543e+08   Oceania                 Melanesia
## 242       2.65    4463432 3.482419e+10    Europe           Northern Europe
## 243       2.80   46471083 3.690379e+11    Europe            Western Europe
## 244       5.58      80706           NA   Oceania                 Polynesia
## 245       4.46     504174 1.018309e+09    Africa             Middle Africa
## 246       5.62     376736           NA    Africa            Western Africa
## 247       2.97    4225733           NA      Asia              Western Asia
## 248       2.44   73686490           NA    Europe            Western Europe
## 249       6.79    6866545 1.965122e+09    Africa            Western Africa
## 250       2.22    8366020 3.135349e+10    Europe           Southern Europe
## 251       7.31      32474           NA  Americas          Northern America
## 252       6.63      91260           NA  Americas                 Caribbean
## 253       6.51    4240084 4.160562e+09  Americas           Central America
## 254       6.11    3633778           NA    Africa            Western Africa
## 255       5.77     623413           NA    Africa            Western Africa
## 256       5.58     582034 4.039824e+08  Americas             South America
## 257       6.32    3943363           NA  Americas                 Caribbean
## 258       7.45    2069085 1.529911e+09  Americas           Central America
## 259       5.21    3227426 1.049098e+10      Asia              Eastern Asia
## 260       1.97   10031496           NA    Europe            Eastern Europe
## 261       4.07     179106 1.773534e+09    Europe           Northern Europe
## 262       5.86  458691457 8.405966e+10      Asia             Southern Asia
## 263       5.66   90138235 1.957521e+10      Asia        South-Eastern Asia
## 264       6.92   22480420           NA      Asia             Southern Asia
## 265       6.36    7475354           NA      Asia              Western Asia
## 266       3.93    2816832           NA    Europe           Northern Europe
## 267       3.84    2174271 1.369271e+10      Asia              Western Asia
## 268       2.41   50067464 3.176322e+11    Europe           Southern Europe
## 269       5.53    1654461           NA  Americas                 Caribbean
## 270       1.98   93357259 8.057781e+11      Asia              Eastern Asia
## 271       7.80     927850           NA      Asia              Western Asia
## 272       4.51   10411040           NA      Asia              Central Asia
## 273       8.00    8361442 1.949774e+09    Africa            Eastern Africa
## 274       7.01      42261           NA   Oceania                Micronesia
## 275       5.99   25808542 3.035630e+10      Asia              Eastern Asia
## 276       7.28     294639           NA      Asia              Western Asia
## 277       5.26    2245062           NA      Asia              Central Asia
## 278       5.96    2169287           NA      Asia        South-Eastern Asia
## 279       1.88    2158546           NA    Europe           Northern Europe
## 280       5.72    1864605           NA      Asia              Western Asia
## 281       5.83     866253 1.147025e+08    Africa           Southern Africa
## 282       6.43    1144896 6.949486e+08    Africa            Western Africa
## 283       7.57    1483856           NA    Africa           Northern Africa
## 284       2.50    2807763           NA    Europe           Northern Europe
## 285       2.38     317442 4.469727e+09    Europe            Western Europe
## 286       4.76     175135           NA      Asia              Eastern Asia
## 287       3.67    1507653           NA    Europe           Southern Europe
## 288       7.30    5223621 2.130711e+09    Africa            Eastern Africa
## 289       6.95    3700032 3.742759e+08    Africa            Eastern Africa
## 290       6.14    8429369 7.134863e+09      Asia        South-Eastern Asia
## 291       7.08      92327           NA      Asia             Southern Asia
## 292       6.73    5322267           NA    Africa            Western Africa
## 293       3.38     311702           NA    Europe           Southern Europe
## 294       6.79     883223 3.689486e+08    Africa            Western Africa
## 295       6.18     679045           NA    Africa            Eastern Africa
## 296       6.78   39394125 9.907531e+10  Americas           Central America
## 297       6.92      45956           NA   Oceania                Micronesia
## 298       3.26    3075927           NA    Europe            Eastern Europe
## 299       7.17     982180           NA      Asia              Eastern Asia
## 300       3.42     498128           NA    Europe           Southern Europe
## 301       7.11   12713043 7.349738e+09    Africa           Northern Africa
## 302       6.60    7643290           NA    Africa            Eastern Africa
## 303       6.17     617282           NA    Africa           Southern Africa
## 304       5.99   10215153 1.380565e+09      Asia             Southern Asia
## 305       3.22   11576024 9.864998e+10    Europe            Western Europe
## 306       5.22      80585           NA   Oceania                 Melanesia
## 307       3.61    2423769           NA   Oceania Australia and New Zealand
## 308       7.26    1830400 1.741191e+09  Americas           Central America
## 309       7.08    3493636 1.066579e+09    Africa            Western Africa
## 310       6.35   46144154 1.286103e+10    Africa            Western Africa
## 311       2.91    3610710 4.070551e+10    Europe           Northern Europe
## 312       7.25     564895 5.449701e+08      Asia              Western Asia
## 313       6.60   45988447 9.123854e+09      Asia             Southern Asia
## 314       5.85    1167041 2.137616e+09  Americas           Central America
## 315       6.28    2001048 8.887949e+08   Oceania                 Melanesia
## 316       6.49    1953331 1.352425e+09  Americas             South America
## 317       6.87   10350239 1.755848e+10  Americas             South America
## 318       7.09   27164618 1.900130e+10      Asia        South-Eastern Asia
## 319       2.85   30138099           NA    Europe            Eastern Europe
## 320       3.18    8899331 2.214232e+10    Europe           Southern Europe
## 321       4.55    2395612 9.731036e+09  Americas                 Caribbean
## 322       6.97      51355           NA      Asia              Western Asia
## 323       2.16   18780105           NA    Europe            Eastern Europe
## 324       2.46  121390327           NA    Europe            Eastern Europe
## 325       8.19    2996091 5.977897e+08    Africa            Eastern Africa
## 326       6.93      90913           NA  Americas                 Caribbean
## 327       7.16      82144 1.120696e+08  Americas                 Caribbean
## 328       7.65     112121           NA   Oceania                 Polynesia
## 329       7.23    4218879           NA      Asia              Western Asia
## 330       6.99    3265558 1.931233e+09    Africa            Western Africa
## 331       2.60    7613356           NA    Europe           Southern Europe
## 332       5.40      42402 4.658999e+07    Africa            Eastern Africa
## 333       6.09    2210169 4.973638e+08    Africa            Western Africa
## 334       5.56    1690353 4.217951e+09      Asia        South-Eastern Asia
## 335       3.01    4193035           NA    Europe            Eastern Europe
## 336       2.33    1596554           NA    Europe           Southern Europe
## 337       6.39     121403           NA   Oceania                 Melanesia
## 338       6.14   17850045 3.981025e+10    Africa           Southern Africa
## 339       2.79   30777097 1.264018e+11    Europe           Southern Europe
## 340       5.42   10129134 2.823071e+09      Asia             Southern Asia
## 341       6.71    7749884 3.322279e+09    Africa           Northern Africa
## 342       6.59     298190           NA  Americas             South America
## 343       6.73     357522           NA    Africa           Southern Africa
## 344       2.23    7527081 8.985967e+10    Europe           Northern Europe
## 345       2.55    5393411           NA    Europe            Western Europe
## 346       7.50    4742596 2.442181e+09      Asia              Western Asia
## 347       6.27    2140413           NA      Asia              Central Asia
## 348       6.81   10373380           NA    Africa            Eastern Africa
## 349       6.15   28224208 9.234703e+09      Asia        South-Eastern Asia
## 350       6.38     508311           NA      Asia        South-Eastern Asia
## 351       6.57    1597528 3.124749e+08    Africa            Western Africa
## 352       7.35      63740           NA   Oceania                 Polynesia
## 353       5.18     865356 3.206251e+09  Americas                 Caribbean
## 354       7.09    4235936 2.957596e+09    Africa           Northern Africa
## 355       6.24   28229291 4.508126e+10      Asia              Western Asia
## 356       6.54    1649914           NA      Asia              Central Asia
## 357       7.02    7006629           NA    Africa            Eastern Africa
## 358       2.31   43203635           NA    Europe            Eastern Europe
## 359       6.91     100985           NA      Asia              Western Asia
## 360       2.75   52765864 5.406852e+11    Europe           Northern Europe
## 361       3.63  189077076 2.536417e+12  Americas          Northern America
## 362       2.89    2571691 1.087924e+10  Americas             South America
## 363       6.76    9044671           NA      Asia              Central Asia
## 364       7.12      65708           NA   Oceania                 Melanesia
## 365       6.64    8461684 4.243145e+10  Americas             South America
## 366       7.80    1096903           NA      Asia              Western Asia
## 367       6.39   33666768           NA      Asia        South-Eastern Asia
## 368       7.31    5251663           NA      Asia              Western Asia
## 369       7.07    3142848 1.680283e+09    Africa            Eastern Africa
## 370       7.22    3876638 1.551931e+09    Africa            Eastern Africa
## 371       5.96    1737645           NA    Europe           Southern Europe
## 372       7.65   11690152 9.595044e+09    Africa           Northern Africa
## 373       7.39    5465905           NA    Africa             Middle Africa
## 374       4.34      56311           NA  Americas                 Caribbean
## 375       3.09   21287682 1.132289e+11  Americas             South America
## 376       4.44    2002170           NA      Asia              Western Asia
## 377       4.47      56226           NA  Americas                 Caribbean
## 378       3.43   10691220 1.003028e+11   Oceania Australia and New Zealand
## 379       2.80    7151077 5.675876e+10    Europe            Western Europe
## 380       5.59    4167558           NA      Asia              Western Asia
## 381       4.45     121083 1.596705e+09  Americas                 Caribbean
## 382       7.17     173107           NA      Asia              Western Asia
## 383       6.79   51030604 1.427907e+10      Asia             Southern Asia
## 384       4.27     232584 9.209859e+08  Americas                 Caribbean
## 385       2.70    8356956           NA    Europe            Eastern Europe
## 386       2.63    9261828 7.536861e+10    Europe            Western Europe
## 387       6.46      97389 9.520656e+07  Americas           Central America
## 388       6.39    2503232 6.193549e+08    Africa            Western Africa
## 389       6.67     234703           NA      Asia             Southern Asia
## 390       6.65    3838096 3.234939e+09  Americas             South America
## 391       3.85    3341809           NA    Europe           Southern Europe
## 392       6.65     549990 1.411745e+08    Africa           Southern Africa
## 393       6.14   77007549 1.222278e+11  Americas             South America
## 394       6.45      89603           NA      Asia        South-Eastern Asia
## 395       2.21    8004367           NA    Europe            Eastern Europe
## 396       6.34    4960325 6.587826e+08    Africa            Western Africa
## 397       7.05    2894510 3.209020e+08    Africa            Eastern Africa
## 398       6.96    6026696           NA      Asia        South-Eastern Asia
## 399       5.77    5593768 2.870510e+09    Africa             Middle Africa
## 400       3.77   18659663 1.855325e+11  Americas          Northern America
## 401       6.95     210866           NA    Africa            Western Africa
## 402       5.89    1556656 5.406286e+08    Africa             Middle Africa
## 403       6.29    3122357 8.014311e+08    Africa             Middle Africa
## 404       5.46    8054166 1.541888e+10  Americas             South America
## 405       5.97  665426760 4.815177e+10      Asia              Eastern Asia
## 406       6.78   17500166 2.111335e+10  Americas             South America
## 407       6.90     194960           NA    Africa            Eastern Africa
## 408       6.03   16041247 5.394833e+09    Africa             Middle Africa
## 409       5.97    1067611 7.138377e+08    Africa             Middle Africa
## 410       7.22    1432583 2.569135e+09  Americas           Central America
## 411       7.50    3740503 2.229649e+09    Africa            Western Africa
## 412       2.27    4251421           NA    Europe           Southern Europe
## 413       4.51    7450404           NA  Americas                 Caribbean
## 414       3.42     577691           NA      Asia              Western Asia
## 415       2.23    9679416           NA    Europe            Eastern Europe
## 416       2.54    4649179 5.863689e+10    Europe           Northern Europe
## 417       6.53      94200           NA    Africa            Eastern Africa
## 418       7.40    3521276 3.452266e+09  Americas                 Caribbean
## 419       6.65    4812892 3.866297e+09  Americas             South America
## 420       6.57   28560741 1.339653e+10    Africa           Northern Africa
## 421       6.75    2927861 4.656689e+09  Americas           Central America
## 422       5.53     257940           NA    Africa             Middle Africa
## 423       6.84    1476321           NA    Africa            Eastern Africa
## 424       1.94    1245098           NA    Europe           Northern Europe
## 425       6.88   23221331           NA    Africa            Eastern Africa
## 426       6.09     421576 4.687703e+08   Oceania                 Melanesia
## 427       2.66    4494623 3.586263e+10    Europe           Northern Europe
## 428       2.81   47121575 3.936608e+11    Europe            Western Europe
## 429       5.50      83654           NA   Oceania                 Polynesia
## 430       4.54     509806 1.094165e+09    Africa             Middle Africa
## 431       5.67     383525           NA    Africa            Western Africa
## 432       2.95    4292101           NA      Asia              Western Asia
## 433       2.47   74238494           NA    Europe            Western Europe
## 434       6.83    7085463 2.045872e+09    Africa            Western Africa
## 435       2.22    8412059 3.183431e+10    Europe           Southern Europe
## 436       7.09      33730           NA  Americas          Northern America
## 437       6.44      92424           NA  Americas                 Caribbean
## 438       6.49    4356579 4.307700e+09  Americas           Central America
## 439       6.12    3690960           NA    Africa            Western Africa
## 440       5.67     629973           NA    Africa            Western Africa
## 441       5.49     600559 4.084461e+08  Americas             South America
## 442       6.30    4022596           NA  Americas                 Caribbean
## 443       7.44    2139208 1.618108e+09  Americas           Central America
## 444       5.18    3391625 1.202198e+10      Asia              Eastern Asia
## 445       1.92   10064667           NA    Europe            Eastern Europe
## 446       3.98     182640 1.920981e+09    Europe           Northern Europe
## 447       5.84  468054145 8.652356e+10      Asia             Southern Asia
## 448       5.65   92558006 1.994903e+10      Asia        South-Eastern Asia
## 449       6.91   23071426           NA      Asia             Southern Asia
## 450       6.51    7674220           NA      Asia              Western Asia
## 451       3.98    2821742           NA    Europe           Northern Europe
## 452       3.83    2264304 1.508336e+10      Asia              Western Asia
## 453       2.44   50458277 3.373370e+11    Europe           Southern Europe
## 454       5.63    1681222           NA  Americas                 Caribbean
## 455       1.97   94263646 8.775646e+11      Asia              Eastern Asia
## 456       7.90     962783           NA      Asia              Western Asia
## 457       4.44   10819503           NA      Asia              Central Asia
## 458       8.04    8628973 2.134171e+09    Africa            Eastern Africa
## 459       7.08      43312           NA   Oceania                Micronesia
## 460       5.79   26495107 3.110257e+10      Asia              Eastern Asia
## 461       7.31     335161           NA      Asia              Western Asia
## 462       5.31    2323642           NA      Asia              Central Asia
## 463       5.97    2219964           NA      Asia        South-Eastern Asia
## 464       1.86    2185016           NA    Europe           Northern Europe
## 465       5.69    1925276           NA      Asia              Western Asia
## 466       5.82     881910 1.322885e+08    Africa           Southern Africa
## 467       6.45    1170267 7.042929e+08    Africa            Western Africa
## 468       7.61    1536196           NA    Africa           Northern Africa
## 469       2.46    2847221           NA    Europe           Northern Europe
## 470       2.39     320704 4.530456e+09    Europe            Western Europe
## 471       4.53     181025           NA      Asia              Eastern Asia
## 472       3.60    1527105           NA    Europe           Southern Europe
## 473       7.30    5352674 2.179101e+09    Africa            Eastern Africa
## 474       6.98    3784444 3.767775e+08    Africa            Eastern Africa
## 475       6.05    8710678 7.592994e+09      Asia        South-Eastern Asia
## 476       7.12      94909           NA      Asia             Southern Asia
## 477       6.75    5381369           NA    Africa            Western Africa
## 478       3.20     310325           NA    Europe           Southern Europe
## 479       6.79     909172 3.716294e+08    Africa            Western Africa
## 480       6.12     698307           NA    Africa            Eastern Africa
## 481       6.77   40649590 1.036966e+11  Americas           Central America
## 482       6.91      47387           NA   Oceania                Micronesia
## 483       3.18    3145546           NA    Europe            Eastern Europe
## 484       7.35    1011328           NA      Asia              Eastern Asia
## 485       3.31     509708           NA    Europe           Southern Europe
## 486       7.13   13100843 8.269777e+09    Africa           Northern Africa
## 487       6.60    7799396           NA    Africa            Eastern Africa
## 488       6.18     632658           NA    Africa           Southern Africa
## 489       6.00   10377061 1.406938e+09      Asia             Southern Asia
## 490       3.18   11735896 1.054011e+11    Europe            Western Europe
## 491       5.22      83221           NA   Oceania                 Melanesia
## 492       3.51    2477328           NA   Oceania Australia and New Zealand
## 493       7.18    1886560 1.944830e+09  Americas           Central America
## 494       7.12    3596613 1.176210e+09    Africa            Western Africa
## 495       6.35   47117859 1.338872e+10    Africa            Western Africa
## 496       2.89    3638791 4.185094e+10    Europe           Northern Europe
## 497       7.25     578825 6.549875e+08      Asia              Western Asia
## 498       6.60   47122931 9.532863e+09      Asia             Southern Asia
## 499       5.81    1202372 2.316423e+09  Americas           Central America
## 500       6.28    2037165 9.454476e+08   Oceania                 Melanesia
## 501       6.47    2005337 1.370624e+09  Americas             South America
## 502       6.86   10650672 1.902289e+10  Americas             South America
## 503       7.02   28081234 1.990826e+10      Asia        South-Eastern Asia
## 504       2.72   30530513           NA    Europe            Eastern Europe
## 505       3.19    8917020 2.360691e+10    Europe           Southern Europe
## 506       4.41    2442157 1.046373e+10  Americas                 Caribbean
## 507       6.98      56187           NA      Asia              Western Asia
## 508       2.02   18924068           NA    Europe            Eastern Europe
## 509       2.34  122842753           NA    Europe            Eastern Europe
## 510       8.20    3050596 6.655420e+08    Africa            Eastern Africa
## 511       6.88      92086           NA  Americas                 Caribbean
## 512       7.07      83206 1.162098e+08  Americas                 Caribbean
## 513       7.63     115786           NA   Oceania                 Polynesia
## 514       7.24    4362863           NA      Asia              Western Asia
## 515       7.04    3356421 1.928602e+09    Africa            Western Africa
## 516       2.57    7669610           NA    Europe           Southern Europe
## 517       5.53      43409 5.050755e+07    Africa            Eastern Africa
## 518       6.16    2239581 5.199489e+08    Africa            Western Africa
## 519       5.27    1742472 4.216236e+09      Asia        South-Eastern Asia
## 520       2.94    4245726           NA    Europe            Eastern Europe
## 521       2.33    1605645           NA    Europe           Southern Europe
## 522       6.38     125068           NA   Oceania                 Melanesia
## 523       6.10   18322335 4.226944e+10    Africa           Southern Africa
## 524       2.80   31122390 1.389831e+11    Europe           Southern Europe
## 525       5.30   10366190 2.930857e+09      Asia             Southern Asia
## 526       6.74    7981797 3.552042e+09    Africa           Northern Africa
## 527       6.56     306330           NA  Americas             South America
## 528       6.75     365719           NA    Africa           Southern Africa
## 529       2.26    7576192 9.368659e+10    Europe           Northern Europe
## 530       2.58    5503000           NA    Europe            Western Europe
## 531       7.52    4897428 3.041036e+09      Asia              Western Asia
## 532       6.31    2223956           NA      Asia              Central Asia
## 533       6.80   10683888           NA    Africa            Eastern Africa
## 534       6.16   29081037 9.932315e+09      Asia        South-Eastern Asia
## 535       6.38     517446           NA      Asia        South-Eastern Asia
## 536       6.62    1612758 3.242666e+08    Africa            Western Africa
## 537       7.30      66255           NA   Oceania                 Polynesia
## 538       5.05     880019 3.294181e+09  Americas                 Caribbean
## 539       7.12    4303130 3.099883e+09    Africa           Northern Africa
## 540       6.18   28909985 4.759294e+10      Asia              Western Asia
## 541       6.63    1708711           NA      Asia              Central Asia
## 542       7.04    7240155           NA    Africa            Eastern Africa
## 543       2.21   43749469           NA    Europe            Eastern Europe
## 544       6.89     112240           NA      Asia              Western Asia
## 545       2.79   53146634 5.478654e+11    Europe           Northern Europe
## 546       3.48  191860710 2.691139e+12  Americas          Northern America
## 547       2.89    2603887 1.070794e+10  Americas             South America
## 548       6.78    9319510           NA      Asia              Central Asia
## 549       7.03      67806           NA   Oceania                 Melanesia
## 550       6.63    8790590 4.605210e+10  Americas             South America
## 551       7.91    1128809           NA      Asia              Western Asia
## 552       6.43   34684164           NA      Asia        South-Eastern Asia
## 553       7.33    5339285           NA      Asia              Western Asia
## 554       7.13    3240664 1.638430e+09    Africa            Eastern Africa
## 555       7.27    4006262 1.574193e+09    Africa            Eastern Africa
## 556       5.83    1790533           NA    Europe           Southern Europe
## 557       7.65   11985130 1.288746e+10    Africa           Northern Africa
## 558       7.41    5565808           NA    Africa             Middle Africa
## 559       4.30      57368           NA  Americas                 Caribbean
## 560       3.08   21621845 1.072185e+11  Americas             South America
## 561       4.32    2070427           NA      Asia              Western Asia
## 562       4.27      56697           NA  Americas                 Caribbean
## 563       3.34   10892700 1.065813e+11   Oceania Australia and New Zealand
## 564       2.82    7199962 5.910759e+10    Europe            Western Europe
## 565       5.55    4307315           NA      Asia              Western Asia
## 566       4.36     127331 1.764744e+09  Americas                 Caribbean
## 567       7.19     178048           NA      Asia              Western Asia
## 568       6.83   52532595 1.421397e+10      Asia             Southern Asia
## 569       4.20     233587 8.742143e+08  Americas                 Caribbean
## 570       2.65    8438535           NA    Europe            Eastern Europe
## 571       2.63    9323467 7.864834e+10    Europe            Western Europe
## 572       6.44     100166 9.992540e+07  Americas           Central America
## 573       6.45    2543335 6.486506e+08    Africa            Western Africa
## 574       6.67     240364           NA      Asia             Southern Asia
## 575       6.63    3913397 3.442644e+09  Americas             South America
## 576       3.74    3406466           NA    Europe           Southern Europe
## 577       6.67     564316 1.495335e+08    Africa           Southern Africa
## 578       6.06   79368453 1.232969e+11  Americas             South America
## 579       6.36      93650           NA      Asia        South-Eastern Asia
## 580       2.20    8073469           NA    Europe            Eastern Europe
## 581       6.38    5027818 6.504291e+08    Africa            Western Africa
## 582       7.09    2950903 3.341726e+08    Africa            Eastern Africa
## 583       6.94    6181137           NA      Asia        South-Eastern Asia
## 584       5.83    5719135 2.977941e+09    Africa             Middle Africa
## 585       3.68   19007305 1.951464e+11  Americas          Northern America
## 586       6.98     216913           NA    Africa            Western Africa
## 587       5.91    1585765 5.368050e+08    Africa             Middle Africa
## 588       6.30    3184775 7.886126e+08    Africa             Middle Africa
## 589       5.34    8237555 1.636198e+10  Americas             South America
## 590       7.41  677332765 5.313163e+10      Asia              Eastern Asia
## 591       6.73   18033548 2.172650e+10  Americas             South America
## 592       6.94     198205           NA    Africa            Eastern Africa
## 593       6.05   16461914 5.676119e+09    Africa             Middle Africa
## 594       6.01    1096502 6.850750e+08    Africa             Middle Africa
## 595       7.09    1484512 2.692061e+09  Americas           Central America
## 596       7.57    3889859 2.552733e+09    Africa            Western Africa
## 597       2.24    4279058           NA    Europe           Southern Europe
## 598       4.61    7618359           NA  Americas                 Caribbean
## 599       3.35     577912           NA      Asia              Western Asia
## 600       2.18    9730996           NA    Europe            Eastern Europe
## 601       2.64    4686155 5.901042e+10    Europe           Northern Europe
## 602       6.56     100622           NA    Africa            Eastern Africa
## 603       7.30    3638628 3.676763e+09  Americas                 Caribbean
## 604       6.62    4953735 4.016141e+09  Americas             South America
## 605       6.53   29322709 1.460966e+10    Africa           Northern Africa
## 606       6.74    3015885 4.857180e+09  Americas           Central America
## 607       5.55     260990           NA    Africa             Middle Africa
## 608       6.81    1512671           NA    Africa            Eastern Africa
## 609       1.95    1260239           NA    Europe           Northern Europe
## 610       6.87   23798378           NA    Africa            Eastern Africa
## 611       5.88     436208 4.985783e+08   Oceania                 Melanesia
## 612       2.66    4522727 3.704076e+10    Europe           Northern Europe
## 613       2.81   47781535 4.147105e+11    Europe            Western Europe
## 614       5.43      86839           NA   Oceania                 Polynesia
## 615       4.62     516270 1.160826e+09    Africa             Middle Africa
## 616       5.72     389070           NA    Africa            Western Africa
## 617       2.92    4357379           NA      Asia              Western Asia
## 618       2.49   74820389           NA    Europe            Western Europe
## 619       6.86    7303432 2.136012e+09    Africa            Western Africa
## 620       2.23    8452617 3.506105e+10    Europe           Southern Europe
## 621       7.04      35038           NA  Americas          Northern America
## 622       6.20      93354           NA  Americas                 Caribbean
## 623       6.46    4476923 4.718699e+09  Americas           Central America
## 624       6.13    3749920           NA    Africa            Western Africa
## 625       5.52     636593           NA    Africa            Western Africa
## 626       5.40     618887 3.582944e+08  Americas             South America
## 627       6.27    4103732           NA  Americas                 Caribbean
## 628       7.44    2211144 1.676044e+09  Americas           Central America
## 629       5.05    3554025 1.342514e+10      Asia              Eastern Asia
## 630       1.89   10099999           NA    Europe            Eastern Europe
## 631       3.86     186056 2.118523e+09    Europe           Northern Europe
## 632       5.83  477729958 9.171009e+10      Asia             Southern Asia
## 633       5.63   95055669 1.949957e+10      Asia        South-Eastern Asia
## 634       6.90   23680433           NA      Asia             Southern Asia
## 635       6.69    7888914           NA      Asia              Western Asia
## 636       4.00    2831911           NA    Europe           Northern Europe
## 637       3.82    2355929 1.669663e+10      Asia              Western Asia
## 638       2.47   50872976 3.562607e+11    Europe           Southern Europe
## 639       5.71    1709690           NA  Americas                 Caribbean
## 640       1.97   95227653 9.519263e+11      Asia              Eastern Asia
## 641       7.98    1000506           NA      Asia              Western Asia
## 642       4.33   11211938           NA      Asia              Central Asia
## 643       8.08    8908425 2.321516e+09    Africa            Eastern Africa
## 644       7.14      44372           NA   Oceania                Micronesia
## 645       5.57   27143075 3.406718e+10      Asia              Eastern Asia
## 646       7.35     381665           NA      Asia              Western Asia
## 647       5.34    2406263           NA      Asia              Central Asia
## 648       5.97    2272078           NA      Asia        South-Eastern Asia
## 649       1.84    2211297           NA    Europe           Northern Europe
## 650       5.65    1984982           NA      Asia              Western Asia
## 651       5.81     898342 1.463310e+08    Africa           Southern Africa
## 652       6.48    1196588 7.203118e+08    Africa            Western Africa
## 653       7.64    1592111           NA    Africa           Northern Africa
## 654       2.42    2887887           NA    Europe           Northern Europe
## 655       2.39     324127 4.686264e+09    Europe            Western Europe
## 656       4.24     188703           NA      Asia              Eastern Asia
## 657       3.53    1547445           NA    Europe           Southern Europe
## 658       7.30    5486593 2.158848e+09    Africa            Eastern Africa
## 659       7.02    3872124 3.715362e+08    Africa            Eastern Africa
## 660       5.94    8999247 8.150229e+09      Asia        South-Eastern Asia
## 661       7.15      97556           NA      Asia             Southern Asia
## 662       6.77    5441611           NA    Africa            Western Africa
## 663       3.01     308815           NA    Europe           Southern Europe
## 664       6.80     936014 3.642571e+08    Africa            Western Africa
## 665       5.99     717413           NA    Africa            Eastern Africa
## 666       6.77   41939880 1.121032e+11  Americas           Central America
## 667       6.90      48875           NA   Oceania                Micronesia
## 668       3.09    3212094           NA    Europe            Eastern Europe
## 669       7.48    1042383           NA      Asia              Eastern Asia
## 670       3.20     520714           NA    Europe           Southern Europe
## 671       7.14   13488517 8.671986e+09    Africa           Northern Africa
## 672       6.60    7961458           NA    Africa            Eastern Africa
## 673       6.20     648668           NA    Africa           Southern Africa
## 674       6.00   10544586 1.433601e+09      Asia             Southern Asia
## 675       3.19   11896942 1.092215e+11    Europe            Western Europe
## 676       5.22      85908           NA   Oceania                 Melanesia
## 677       3.41    2530791           NA   Oceania Australia and New Zealand
## 678       7.11    1943591 2.138208e+09  Americas           Central America
## 679       7.15    3703159 1.287106e+09    Africa            Western Africa
## 680       6.34   48128460 1.453728e+10    Africa            Western Africa
## 681       2.91    3666690 4.343501e+10    Europe           Northern Europe
## 682       7.26     593504 6.846666e+08      Asia              Western Asia
## 683       6.60   48312888 1.036116e+10      Asia             Southern Asia
## 684       5.77    1238824 2.511527e+09  Americas           Central America
## 685       6.28    2075630 9.839511e+08   Oceania                 Melanesia
## 686       6.45    2058916 1.423699e+09  Americas             South America
## 687       6.84   10961539 1.973064e+10  Americas             South America
## 688       6.95   29016770 2.131388e+10      Asia        South-Eastern Asia
## 689       2.60   30893775           NA    Europe            Eastern Europe
## 690       3.19    8924221 2.499351e+10    Europe           Southern Europe
## 691       4.25    2491284 1.155192e+10  Americas                 Caribbean
## 692       6.98      61647           NA      Asia              Western Asia
## 693       2.00   19059874           NA    Europe            Eastern Europe
## 694       2.28  124193114           NA    Europe            Eastern Europe
## 695       8.20    3102968 6.001828e+08    Africa            Eastern Africa
## 696       6.82      93397           NA  Americas                 Caribbean
## 697       6.98      84167 1.089288e+08  Americas                 Caribbean
## 698       7.60     119564           NA   Oceania                 Polynesia
## 699       7.25    4516663           NA      Asia              Western Asia
## 700       7.08    3450418 1.964561e+09    Africa            Western Africa
## 701       2.54    7725501           NA    Europe           Southern Europe
## 702       5.65      44515 5.562680e+07    Africa            Eastern Africa
## 703       6.23    2269890 5.287866e+08    Africa            Western Africa
## 704       4.97    1790682 4.591737e+09      Asia        South-Eastern Asia
## 705       2.86    4294673           NA    Europe            Eastern Europe
## 706       2.34    1614022           NA    Europe           Southern Europe
## 707       6.39     128863           NA   Oceania                 Melanesia
## 708       6.05   18809939 4.538620e+10    Africa           Southern Africa
## 709       2.82   31479529 1.523206e+11    Europe           Southern Europe
## 710       5.18   10608672 3.004619e+09      Asia             Southern Asia
## 711       6.76    8223613 3.450917e+09    Africa           Northern Africa
## 712       6.50     314530           NA  Americas             South America
## 713       6.76     373991           NA    Africa           Southern Africa
## 714       2.33    7627722 9.867811e+10    Europe           Northern Europe
## 715       2.58    5618160           NA    Europe            Western Europe
## 716       7.54    5057825 2.777903e+09      Asia              Western Asia
## 717       6.37    2312193           NA      Asia              Central Asia
## 718       6.80   11005882           NA    Africa            Eastern Africa
## 719       6.16   29967043 1.072688e+10      Asia        South-Eastern Asia
## 720       6.37     526936           NA      Asia        South-Eastern Asia
## 721       6.68    1631763 3.404789e+08    Africa            Western Africa
## 722       7.23      69000           NA   Oceania                 Polynesia
## 723       4.87     892571 3.478807e+09  Americas                 Caribbean
## 724       7.13    4377636 3.472636e+09    Africa           Northern Africa
## 725       6.10   29597047 5.190786e+10      Asia              Western Asia
## 726       6.67    1769008           NA      Asia              Central Asia
## 727       7.06    7487411           NA    Africa            Eastern Africa
## 728       2.13   44285897           NA    Europe            Eastern Europe
## 729       6.88     125216           NA      Asia              Western Asia
## 730       2.80   53537821 5.695403e+11    Europe           Northern Europe
## 731       3.35  194513911 2.809549e+12  Americas          Northern America
## 732       2.87    2635128 1.072619e+10  Americas             South America
## 733       6.79    9611601           NA      Asia              Central Asia
## 734       6.94      69962           NA   Oceania                 Melanesia
## 735       6.58    9130346 4.784857e+10  Americas             South America
## 736       7.99    1159693           NA      Asia              Western Asia
## 737       6.45   35722092           NA      Asia        South-Eastern Asia
## 738       7.35    5429501           NA      Asia              Western Asia
## 739       7.18    3342894 1.692046e+09    Africa            Eastern Africa
## 740       7.31    4140804 1.672491e+09    Africa            Eastern Africa
## 741       5.71    1843596           NA    Europe           Southern Europe
## 742       7.65   12295973 1.364001e+10    Africa           Northern Africa
## 743       7.43    5665701           NA    Africa             Middle Africa
## 744       4.25      58500           NA  Americas                 Caribbean
## 745       3.07   21953926 1.180800e+11  Americas             South America
## 746       4.16    2138133           NA      Asia              Western Asia
## 747       4.06      57029           NA  Americas                 Caribbean
## 748       3.15   11114995 1.140183e+11   Oceania Australia and New Zealand
## 749       2.80    7249855 6.272755e+10    Europe            Western Europe
## 750       5.47    4445653           NA      Asia              Western Asia
## 751       4.22     133697 1.950069e+09  Americas                 Caribbean
## 752       7.19     182774           NA      Asia              Western Asia
## 753       6.85   54129390 1.577080e+10      Asia             Southern Asia
## 754       4.09     234547 9.179677e+08  Americas                 Caribbean
## 755       2.60    8521433           NA    Europe            Eastern Europe
## 756       2.60    9383443 8.411966e+10    Europe            Western Europe
## 757       6.42     103070 1.049215e+08  Americas           Central America
## 758       6.50    2586362 6.917908e+08    Africa            Western Africa
## 759       6.67     246324           NA      Asia             Southern Asia
## 760       6.61    3990855 3.607704e+09  Americas             South America
## 761       3.62    3468083           NA    Europe           Southern Europe
## 762       6.68     579560 1.597500e+08    Africa           Southern Africa
## 763       5.95   81751802 1.275945e+11  Americas             South America
## 764       6.23      97933           NA      Asia        South-Eastern Asia
## 765       2.18    8141171           NA    Europe            Eastern Europe
## 766       6.41    5098892 6.652772e+08    Africa            Western Africa
## 767       7.14    3011957 3.551354e+08    Africa            Eastern Africa
## 768       6.91    6329411           NA      Asia        South-Eastern Asia
## 769       5.89    5850454 3.083573e+09    Africa             Middle Africa
## 770       3.51   19349346 2.082202e+11  Americas          Northern America
## 771       6.99     223854           NA    Africa            Western Africa
## 772       5.93    1616515 5.479725e+08    Africa             Middle Africa
## 773       6.32    3247798 7.688110e+08    Africa             Middle Africa
## 774       5.19    8423614 1.679850e+10  Americas             South America
## 775       6.12  690932043 6.154606e+10      Asia              Eastern Asia
## 776       6.66   18581972 2.316096e+10  Americas             South America
## 777       6.98     201665           NA    Africa            Eastern Africa
## 778       6.07   16903899 5.537609e+09    Africa             Middle Africa
## 779       6.06    1126602 7.112229e+08    Africa             Middle Africa
## 780       6.89    1537035 2.803756e+09  Americas           Central America
## 781       7.64    4049675 3.002348e+09    Africa            Western Africa
## 782       2.21    4304984           NA    Europe           Southern Europe
## 783       4.64    7787149           NA  Americas                 Caribbean
## 784       3.25     578629           NA      Asia              Western Asia
## 785       2.12    9773266           NA    Europe            Eastern Europe
## 786       2.60    4723496 6.448065e+10    Europe           Northern Europe
## 787       6.60     107584           NA    Africa            Eastern Africa
## 788       7.19    3757962 3.925492e+09  Americas                 Caribbean
## 789       6.59    5099470 4.329877e+09  Americas             South America
## 790       6.47   30094082 1.579923e+10    Africa           Northern Africa
## 791       6.70    3106186 5.310184e+09  Americas           Central America
## 792       5.57     264743           NA    Africa             Middle Africa
## 793       6.78    1550297           NA    Africa            Eastern Africa
## 794       1.95    1275471           NA    Europe           Northern Europe
## 795       6.87   24396965           NA    Africa            Eastern Africa
## 796       5.68     450452 5.228954e+08   Oceania                 Melanesia
## 797       2.58    4546343 3.898121e+10    Europe           Northern Europe
## 798       2.80   48402900 4.417427e+11    Europe            Western Europe
## 799       5.37      90132           NA   Oceania                 Polynesia
## 800       4.69     523793 1.213696e+09    Africa             Middle Africa
## 801       5.78     394552           NA    Africa            Western Africa
## 802       2.86    4419583           NA      Asia              Western Asia
## 803       2.49   75410766           NA    Europe            Western Europe
## 804       6.89    7513286 2.183204e+09    Africa            Western Africa
## 805       2.26    8492232 3.795651e+10    Europe           Southern Europe
## 806       7.27      36441           NA  Americas          Northern America
## 807       5.91      94066           NA  Americas                 Caribbean
## 808       6.43    4600846 4.937316e+09  Americas           Central America
## 809       6.13    3812004           NA    Africa            Western Africa
## 810       5.32     643962           NA    Africa            Western Africa
## 811       5.33     635778 3.989977e+08  Americas             South America
## 812       6.23    4186636           NA  Americas                 Caribbean
## 813       7.44    2282764 1.766829e+09  Americas           Central America
## 814       4.83    3695136 1.498265e+10      Asia              Eastern Asia
## 815       1.88   10135688           NA    Europe            Eastern Europe
## 816       3.74     189276 2.328607e+09    Europe           Northern Europe
## 817       5.81  487690114 9.854520e+10      Asia             Southern Asia
## 818       5.62   97638027 2.017259e+10      Asia        South-Eastern Asia
## 819       6.87   24308080           NA      Asia             Southern Asia
## 820       6.87    8122200           NA      Asia              Western Asia
## 821       3.99    2844373           NA    Europe           Northern Europe
## 822       3.82    2443297 1.802188e+10      Asia              Western Asia
## 823       2.50   51289904 3.662278e+11    Europe           Southern Europe
## 824       5.78    1737616           NA  Americas                 Caribbean
## 825       1.97   96253064 1.063080e+12      Asia              Eastern Asia
## 826       8.03    1050725           NA      Asia              Western Asia
## 827       4.20   11577537           NA      Asia              Central Asia
## 828       8.10    9200158 2.436767e+09    Africa            Eastern Africa
## 829       7.20      45424           NA   Oceania                Micronesia
## 830       5.36   27770874 3.664308e+10      Asia              Eastern Asia
## 831       7.38     431366           NA      Asia              Western Asia
## 832       5.32    2490244           NA      Asia              Central Asia
## 833       5.97    2325742           NA      Asia        South-Eastern Asia
## 834       1.82    2236844           NA    Europe           Northern Europe
## 835       5.58    2041212           NA      Asia              Western Asia
## 836       5.81     915473 1.584050e+08    Africa           Southern Africa
## 837       6.50    1224094 7.574220e+08    Africa            Western Africa
## 838       7.68    1652294           NA    Africa           Northern Africa
## 839       2.38    2928182           NA    Europe           Northern Europe
## 840       2.37     327361 5.054877e+09    Europe            Western Europe
## 841       3.93     197523           NA      Asia              Eastern Asia
## 842       3.45    1569143           NA    Europe           Southern Europe
## 843       7.30    5625401 2.244393e+09    Africa            Eastern Africa
## 844       7.06    3963424 3.814232e+08    Africa            Eastern Africa
## 845       5.81    9287442 8.586997e+09      Asia        South-Eastern Asia
## 846       7.18     100177           NA      Asia             Southern Asia
## 847       6.79    5503748           NA    Africa            Western Africa
## 848       2.80     307389           NA    Europe           Southern Europe
## 849       6.80     963746 4.651231e+08    Africa            Western Africa
## 850       5.79     735860           NA    Africa            Eastern Africa
## 851       6.77   43264267 1.254496e+11  Americas           Central America
## 852       6.89      50483           NA   Oceania                Micronesia
## 853       2.99    3275457           NA    Europe            Eastern Europe
## 854       7.56    1074517           NA      Asia              Eastern Asia
## 855       3.09     529176           NA    Europe           Southern Europe
## 856       7.12   13871988 8.783539e+09    Africa           Northern Africa
## 857       6.60    8129268           NA    Africa            Eastern Africa
## 858       6.22     665297           NA    Africa           Southern Africa
## 859       6.00   10719988 1.541586e+09      Asia             Southern Asia
## 860       3.17   12057475 1.182595e+11    Europe            Western Europe
## 861       5.22      88578           NA   Oceania                 Melanesia
## 862       3.22    2581578           NA   Oceania Australia and New Zealand
## 863       7.05    2002119 2.375787e+09  Americas           Central America
## 864       7.19    3811813 1.288792e+09    Africa            Western Africa
## 865       6.34   49169819 1.525695e+10    Africa            Western Africa
## 866       2.96    3694987 4.561095e+10    Europe           Northern Europe
## 867       7.26     608889 6.851783e+08      Asia              Western Asia
## 868       6.60   49555472 1.114547e+10      Asia             Southern Asia
## 869       5.71    1276274 2.625299e+09  Americas           Central America
## 870       6.27    2116832 1.068279e+09   Oceania                 Melanesia
## 871       6.41    2114095 1.479031e+09  Americas             South America
## 872       6.80   11281015 2.103292e+10  Americas             South America
## 873       6.87   29962877 2.204856e+10      Asia        South-Eastern Asia
## 874       2.50   31229448           NA    Europe            Eastern Europe
## 875       3.19    8915539 2.657079e+10    Europe           Southern Europe
## 876       4.08    2537637 1.237334e+10  Americas                 Caribbean
## 877       6.99      67487           NA      Asia              Western Asia
## 878       1.95   19207098           NA    Europe            Eastern Europe
## 879       2.16  125412397           NA    Europe            Eastern Europe
## 880       8.20    3161719 5.253700e+08    Africa            Eastern Africa
## 881       6.76      94813           NA  Americas                 Caribbean
## 882       6.88      85076 1.129262e+08  Americas                 Caribbean
## 883       7.57     123354           NA   Oceania                 Polynesia
## 884       7.26    4677409           NA      Asia              Western Asia
## 885       7.11    3547939 2.040863e+09    Africa            Western Africa
## 886       2.52    7780683           NA    Europe           Southern Europe
## 887       5.76      45651 5.891948e+07    Africa            Eastern Africa
## 888       6.30    2301023 5.641372e+08    Africa            Western Africa
## 889       4.66    1836087 4.617456e+09      Asia        South-Eastern Asia
## 890       2.78    4339082           NA    Europe            Eastern Europe
## 891       2.34    1621883           NA    Europe           Southern Europe
## 892       6.39     132787           NA   Oceania                 Melanesia
## 893       5.98   19308166 4.898979e+10    Africa           Southern Africa
## 894       2.83   31838485 1.604066e+11    Europe           Southern Europe
## 895       5.07   10858780 3.121994e+09      Asia             Southern Asia
## 896       6.79    8475765 3.412251e+09    Africa           Northern Africa
## 897       6.41     322995           NA  Americas             South America
## 898       6.78     382575           NA    Africa           Southern Africa
## 899       2.48    7682603 1.054094e+11    Europe           Northern Europe
## 900       2.56    5729465           NA    Europe            Western Europe
## 901       7.56    5224579 3.035452e+09      Asia              Western Asia
## 902       6.43    2401598           NA      Asia              Central Asia
## 903       6.80   11339076           NA    Africa            Eastern Africa
## 904       6.15   30881332 1.145964e+10      Asia        South-Eastern Asia
## 905       6.35     536798           NA      Asia        South-Eastern Asia
## 906       6.73    1662072 3.891198e+08    Africa            Western Africa
## 907       7.12      71757           NA   Oceania                 Polynesia
## 908       4.66     903272 3.744257e+09  Americas                 Caribbean
## 909       7.11    4458609 3.642980e+09    Africa           Northern Africa
## 910       6.03   30292969 5.474154e+10      Asia              Western Asia
## 911       6.66    1829697           NA      Asia              Central Asia
## 912       7.08    7746181           NA    Africa            Eastern Africa
## 913       2.07   44794325           NA    Europe            Eastern Europe
## 914       6.86     138220           NA      Asia              Western Asia
## 915       2.79   53920055 5.982353e+11    Europe           Northern Europe
## 916       3.22  197028908 2.972502e+12  Americas          Northern America
## 917       2.86    2665387 1.098797e+10  Americas             South America
## 918       6.78    9917202           NA      Asia              Central Asia
## 919       6.84      72131           NA   Oceania                 Melanesia
## 920       6.50    9476255 5.317380e+10  Americas             South America
## 921       8.04    1182168           NA      Asia              Western Asia
## 922       6.46   36780984           NA      Asia        South-Eastern Asia
## 923       7.39    5522690           NA      Asia              Western Asia
## 924       7.24    3449266 1.898713e+09    Africa            Eastern Africa
## 925       7.35    4279561 1.653991e+09    Africa            Eastern Africa
## 926       5.59    1896125           NA    Europe           Southern Europe
## 927       7.66   12626953 1.448664e+10    Africa           Northern Africa
## 928       7.43    5765025           NA    Africa             Middle Africa
## 929       4.19      59653           NA  Americas                 Caribbean
## 930       3.06   22283389 1.305604e+11  Americas             South America
## 931       3.98    2204650           NA      Asia              Western Asia
## 932       3.84      57360           NA  Americas                 Caribbean
## 933       2.97   11368011 1.208583e+11   Oceania Australia and New Zealand
## 934       2.70    7298794 6.491058e+10    Europe            Western Europe
## 935       5.35    4579759           NA      Asia              Western Asia
## 936       4.06     140049 2.153376e+09  Americas                 Caribbean
## 937       7.17     187348           NA      Asia              Western Asia
## 938       6.88   55835020 1.602412e+10      Asia             Southern Asia
## 939       3.96     235373 1.022936e+09  Americas                 Caribbean
## 940       2.54    8607031           NA    Europe            Eastern Europe
## 941       2.56    9440279 8.711487e+10    Europe            Western Europe
## 942       6.40     106121 1.100947e+08  Americas           Central America
## 943       6.54    2632360 7.284133e+08    Africa            Western Africa
## 944       6.67     252629           NA      Asia             Southern Asia
## 945       6.59    4070590 3.810638e+09  Americas             South America
## 946       3.50    3524596           NA    Europe           Southern Europe
## 947       6.69     595741 1.690378e+08    Africa           Southern Africa
## 948       5.82   84130061 1.314906e+11  Americas             South America
## 949       6.07     102525           NA      Asia        South-Eastern Asia
## 950       2.17    8206564           NA    Europe            Eastern Europe
## 951       6.45    5174869 6.903219e+08    Africa            Western Africa
## 952       7.18    3079034 3.692244e+08    Africa            Eastern Africa
## 953       6.87    6467196           NA      Asia        South-Eastern Asia
## 954       5.95    5987671 3.146048e+09    Africa             Middle Africa
## 955       3.15   19693538 2.220388e+11  Americas          Northern America
## 956       6.99     231427           NA    Africa            Western Africa
## 957       5.94    1648830 5.531649e+08    Africa             Middle Africa
## 958       6.34    3310921 7.734718e+08    Africa             Middle Africa
## 959       5.00    8612074 1.686858e+10  Americas             South America
## 960       6.02  706590947 7.161686e+10      Asia              Eastern Asia
## 961       6.56   19144220 2.385868e+10  Americas             South America
## 962       7.00     205412           NA    Africa            Eastern Africa
## 963       6.09   17369859 5.592839e+09    Africa             Middle Africa
## 964       6.10    1157905 7.373708e+08    Africa             Middle Africa
## 965       6.63    1589625 3.079354e+09  Americas           Central America
## 966       7.70    4219739 2.908986e+09    Africa            Western Africa
## 967       2.18    4328920           NA    Europe           Southern Europe
## 968       4.62    7951928           NA  Americas                 Caribbean
## 969       3.13     580971           NA      Asia              Western Asia
## 970       2.07    9800931           NA    Europe            Eastern Europe
## 971       2.61    4760262 6.741791e+10    Europe           Northern Europe
## 972       6.63     114963           NA    Africa            Eastern Africa
## 973       7.05    3878952 3.435518e+09  Americas                 Caribbean
## 974       6.55    5250120 4.467235e+09  Americas             South America
## 975       6.41   30872982 1.725672e+10    Africa           Northern Africa
## 976       6.64    3197865 5.595259e+09  Americas           Central America
## 977       5.60     269427           NA    Africa             Middle Africa
## 978       6.75    1589187           NA    Africa            Eastern Africa
## 979       1.97    1290437           NA    Europe           Northern Europe
## 980       6.86   25013551           NA    Africa            Eastern Africa
## 981       5.48     463884 5.087758e+08   Oceania                 Melanesia
## 982       2.46    4564690 4.104832e+10    Europe           Northern Europe
## 983       2.77   48952283 4.628494e+11    Europe            Western Europe
## 984       5.31      93440 8.056244e+08   Oceania                 Polynesia
## 985       4.77     532512 1.314837e+09    Africa             Middle Africa
## 986       5.83     400865           NA    Africa            Western Africa
## 987       2.80    4477328 3.371857e+09      Asia              Western Asia
## 988       2.48   75990737           NA    Europe            Western Europe
## 989       6.92    7710547 2.213092e+09    Africa            Western Africa
## 990       2.29    8534252 4.152164e+10    Europe           Southern Europe
## 991       6.96      37963           NA  Americas          Northern America
## 992       5.60      94579           NA  Americas                 Caribbean
## 993       6.40    4728203 5.152671e+09  Americas           Central America
## 994       6.14    3877804           NA    Africa            Western Africa
## 995       5.14     652566           NA    Africa            Western Africa
## 996       5.27     650379 4.410561e+08  Americas             South America
## 997       6.18    4271133           NA  Americas                 Caribbean
## 998       7.44    2352637 1.926500e+09  Americas           Central America
## 999       4.55    3801814 1.746924e+10      Asia              Eastern Asia
## 1000      1.89   10170472 1.835993e+10    Europe            Eastern Europe
## 1001      3.60     192251 2.500266e+09    Europe           Northern Europe
## 1002      5.78  497920270 9.594777e+10      Asia             Southern Asia
## 1003      5.61  100308896 2.036364e+10      Asia        South-Eastern Asia
## 1004      6.83   24955116 2.418788e+10      Asia             Southern Asia
## 1005      7.04    8375791           NA      Asia              Western Asia
## 1006      3.95    2857104           NA    Europe           Northern Europe
## 1007      3.81    2522530 1.966078e+10      Asia              Western Asia
## 1008      2.52   51693136 3.781963e+11    Europe           Southern Europe
## 1009      5.82    1763436           NA  Americas                 Caribbean
## 1010      1.98   97341852 1.124948e+12      Asia              Eastern Asia
## 1011      8.06    1119798           NA      Asia              Western Asia
## 1012      4.06   11909001           NA      Asia              Central Asia
## 1013      8.12    9504702 2.485724e+09    Africa            Eastern Africa
## 1014      7.22      46455           NA   Oceania                Micronesia
## 1015      5.16   28392722 3.854490e+10      Asia              Eastern Asia
## 1016      7.41     482173           NA      Asia              Western Asia
## 1017      5.27    2573494           NA      Asia              Central Asia
## 1018      5.97    2381063           NA      Asia        South-Eastern Asia
## 1019      1.81    2261259 3.530425e+09    Europe           Northern Europe
## 1020      5.50    2092354           NA      Asia              Western Asia
## 1021      5.80     933251 1.618172e+08    Africa           Southern Africa
## 1022      6.52    1252968 7.937312e+08    Africa            Western Africa
## 1023      7.71    1717255           NA    Africa           Northern Africa
## 1024      2.35    2966947           NA    Europe           Northern Europe
## 1025      2.34     330164 5.017727e+09    Europe            Western Europe
## 1026      3.59     206910           NA      Asia              Eastern Asia
## 1027      3.36    1592434           NA    Europe           Southern Europe
## 1028      7.30    5769219 2.234243e+09    Africa            Eastern Africa
## 1029      7.10    4058680 4.333596e+08    Africa            Eastern Africa
## 1030      5.66    9569784 9.246896e+09      Asia        South-Eastern Asia
## 1031      7.20     102723           NA      Asia             Southern Asia
## 1032      6.82    5568485           NA    Africa            Western Africa
## 1033      2.59     306212           NA    Europe           Southern Europe
## 1034      6.80     992368 5.401862e+08    Africa            Western Africa
## 1035      5.51     753285           NA    Africa            Eastern Africa
## 1036      6.77   44623041 1.336869e+11  Americas           Central America
## 1037      6.89      52238           NA   Oceania                Micronesia
## 1038      2.89    3335625           NA    Europe            Eastern Europe
## 1039      7.59    1107125           NA      Asia              Eastern Asia
## 1040      2.99     533815           NA    Europe           Southern Europe
## 1041      7.08   14248426 8.951061e+09    Africa           Northern Africa
## 1042      6.60    8302736           NA    Africa            Eastern Africa
## 1043      6.24     682553           NA    Africa           Southern Africa
## 1044      6.00   10905006 1.523038e+09      Asia             Southern Asia
## 1045      3.04   12216122 1.284807e+11    Europe            Western Europe
## 1046      5.22      91197 6.949675e+08   Oceania                 Melanesia
## 1047      3.05    2628003           NA   Oceania Australia and New Zealand
## 1048      7.01    2062633 2.589699e+09  Americas           Central America
## 1049      7.22    3921581 1.377974e+09    Africa            Western Africa
## 1050      6.34   50238569 1.600225e+10    Africa            Western Africa
## 1051      2.93    3724065 4.802177e+10    Europe           Northern Europe
## 1052      7.27     625007 6.882486e+08      Asia              Western Asia
## 1053      6.60   50848775 1.230676e+10      Asia             Southern Asia
## 1054      5.64    1314627 2.865105e+09  Americas           Central America
## 1055      6.26    2161103 1.177975e+09   Oceania                 Melanesia
## 1056      6.36    2170853 1.558360e+09  Americas             South America
## 1057      6.75   11607684 2.207179e+10  Americas             South America
## 1058      6.78   30913931 2.320960e+10      Asia        South-Eastern Asia
## 1059      2.41   31539695           NA    Europe            Eastern Europe
## 1060      3.18    8888635 2.855536e+10    Europe           Southern Europe
## 1061      3.89    2577530 1.349689e+10  Americas                 Caribbean
## 1062      6.99      73543           NA      Asia              Western Asia
## 1063      1.89   19379554           NA    Europe            Eastern Europe
## 1064      2.09  126483874           NA    Europe            Eastern Europe
## 1065      8.20    3232937 5.621960e+08    Africa            Eastern Africa
## 1066      6.69      96303           NA  Americas                 Caribbean
## 1067      6.76      85972 1.139255e+08  Americas                 Caribbean
## 1068      7.52     127068           NA   Oceania                 Polynesia
## 1069      7.26    4843635           NA      Asia              Western Asia
## 1070      7.15    3649308 2.068051e+09    Africa            Western Africa
## 1071      2.49    7835084           NA    Europe           Southern Europe
## 1072      5.84      46770 1.180822e+08    Africa            Eastern Africa
## 1073      6.38    2332999 6.046432e+08    Africa            Western Africa
## 1074      4.36    1879571 5.250605e+09      Asia        South-Eastern Asia
## 1075      2.70    4378613           NA    Europe            Eastern Europe
## 1076      2.34    1629434           NA    Europe           Southern Europe
## 1077      6.42     136847           NA   Oceania                 Melanesia
## 1078      5.91   19813947 5.334794e+10    Africa           Southern Africa
## 1079      2.83   32192223 1.704370e+11    Europe           Southern Europe
## 1080      4.96   11117685 3.201198e+09      Asia             Southern Asia
## 1081      6.81    8738703 3.643502e+09    Africa           Northern Africa
## 1082      6.30     331799           NA  Americas             South America
## 1083      6.80     391659           NA    Africa           Southern Africa
## 1084      2.41    7741167 1.094376e+11    Europe           Northern Europe
## 1085      2.53    5829958           NA    Europe            Western Europe
## 1086      7.56    5398333 3.105249e+09      Asia              Western Asia
## 1087      6.51    2489648           NA      Asia              Central Asia
## 1088      6.80   11683511           NA    Africa            Eastern Africa
## 1089      6.13   31822798 1.239723e+10      Asia        South-Eastern Asia
## 1090      6.31     547035           NA      Asia        South-Eastern Asia
## 1091      6.79    1708632 4.492766e+08    Africa            Western Africa
## 1092      6.97      74363           NA   Oceania                 Polynesia
## 1093      4.43     912419 3.770237e+09  Americas                 Caribbean
## 1094      7.06    4545340 3.737796e+09    Africa           Northern Africa
## 1095      5.95   31000167 5.628718e+10      Asia              Western Asia
## 1096      6.62    1890000           NA      Asia              Central Asia
## 1097      7.09    8014376           NA    Africa            Eastern Africa
## 1098      2.03   45261939           NA    Europe            Eastern Europe
## 1099      6.84     150318           NA      Asia              Western Asia
## 1100      2.76   54278349 6.149200e+11    Europe           Northern Europe
## 1101      2.93  199403532 3.162743e+12  Americas          Northern America
## 1102      2.84    2694535 1.110286e+10  Americas             South America
## 1103      6.75   10233502           NA      Asia              Central Asia
## 1104      6.73      74287           NA   Oceania                 Melanesia
## 1105      6.37    9824694 5.538736e+10  Americas             South America
## 1106      8.06    1191509           NA      Asia              Western Asia
## 1107      6.48   37860014           NA      Asia        South-Eastern Asia
## 1108      7.42    5619170           NA      Asia              Western Asia
## 1109      7.29    3559687 2.214801e+09    Africa            Eastern Africa
## 1110      7.37    4422132 1.735211e+09    Africa            Eastern Africa
## 1111      5.48    1947786           NA    Europe           Southern Europe
## 1112      7.66   12980269 1.379056e+10    Africa           Northern Africa
## 1113      7.42    5863568           NA    Africa             Middle Africa
## 1114      4.13      60818           NA  Americas                 Caribbean
## 1115      3.05   22608747 1.296991e+11  Americas             South America
## 1116      3.79    2269475           NA      Asia              Western Asia
## 1117      3.63      57712           NA  Americas                 Caribbean
## 1118      2.89   11657281 1.237237e+11   Oceania Australia and New Zealand
## 1119      2.66    7345865 6.857339e+10    Europe            Western Europe
## 1120      5.21    4708485           NA      Asia              Western Asia
## 1121      3.89     146364 2.348728e+09  Americas                 Caribbean
## 1122      7.10     191782           NA      Asia              Western Asia
## 1123      6.90   57675529 1.643543e+10      Asia             Southern Asia
## 1124      3.81     236043 1.063888e+09  Americas                 Caribbean
## 1125      2.48    8695433           NA    Europe            Eastern Europe
## 1126      2.50    9493656 8.986413e+10    Europe            Western Europe
## 1127      6.38     109344 1.153472e+08  Americas           Central America
## 1128      6.59    2681382 7.544603e+08    Africa            Western Africa
## 1129      6.67     259270           NA      Asia             Southern Asia
## 1130      6.59    4152665 4.058227e+09  Americas             South America
## 1131      3.37    3574972           NA    Europe           Southern Europe
## 1132      6.70     612950 1.797616e+08    Africa           Southern Africa
## 1133      5.66   86494987 1.369479e+11  Americas             South America
## 1134      5.92     107450           NA      Asia        South-Eastern Asia
## 1135      2.15    8269118           NA    Europe            Eastern Europe
## 1136      6.49    5256363 6.940332e+08    Africa            Western Africa
## 1137      7.22    3153879 3.862567e+08    Africa            Eastern Africa
## 1138      6.82    6588993           NA      Asia        South-Eastern Asia
## 1139      6.01    6130990 3.291236e+09    Africa             Middle Africa
## 1140      2.81   20041006 2.366600e+11  Americas          Northern America
## 1141      6.99     239765           NA    Africa            Western Africa
## 1142      5.95    1682874 5.567328e+08    Africa             Middle Africa
## 1143      6.36    3373563 7.594944e+08    Africa             Middle Africa
## 1144      4.80    8802926 1.855571e+10  Americas             South America
## 1145      6.21  724490033 7.927986e+10      Asia              Eastern Asia
## 1146      6.42   19721464 2.512853e+10  Americas             South America
## 1147      7.03     209536           NA    Africa            Eastern Africa
## 1148      6.11   17861860 5.971781e+09    Africa             Middle Africa
## 1149      6.14    1190361 7.473915e+08    Africa             Middle Africa
## 1150      6.33    1642189 3.321721e+09  Americas           Central America
## 1151      7.76    4400054 3.245769e+09    Africa            Western Africa
## 1152      2.14    4350815           NA    Europe           Southern Europe
## 1153      4.54    8110428           NA  Americas                 Caribbean
## 1154      3.01     585311           NA      Asia              Western Asia
## 1155      2.03    9811540           NA    Europe            Eastern Europe
## 1156      2.62    4796157 6.926578e+10    Europe           Northern Europe
## 1157      6.67     122868           NA    Africa            Eastern Africa
## 1158      6.90    4001377 3.898054e+09  Americas                 Caribbean
## 1159      6.49    5405692 4.463233e+09  Americas             South America
## 1160      6.33   31660914 1.743906e+10    Africa           Northern Africa
## 1161      6.57    3290397 5.995944e+09  Americas           Central America
## 1162      5.62     275470           NA    Africa             Middle Africa
## 1163      6.73    1629333           NA    Africa            Eastern Africa
## 1164      1.99    1305025           NA    Europe           Northern Europe
## 1165      6.87   25641176           NA    Africa            Eastern Africa
## 1166      5.28     476329 5.087758e+08   Oceania                 Melanesia
## 1167      2.41    4577033 4.202233e+10    Europe           Northern Europe
## 1168      2.73   49411342 4.869824e+11    Europe            Western Europe
## 1169      5.27      96730 8.827757e+08   Oceania                 Polynesia
## 1170      4.83     542562 1.374110e+09    Africa             Middle Africa
## 1171      5.88     408182 2.076837e+08    Africa            Western Africa
## 1172      2.74    4529961 3.625948e+09      Asia              Western Asia
## 1173      2.44   76558016           NA    Europe            Western Europe
## 1174      6.94    7890992 2.118852e+09    Africa            Western Africa
## 1175      2.32    8580600 4.405398e+10    Europe           Southern Europe
## 1176      7.00      39616           NA  Americas          Northern America
## 1177      5.30      94878           NA  Americas                 Caribbean
## 1178      6.36    4858880 5.436691e+09  Americas           Central America
## 1179      6.14    3948206           NA    Africa            Western Africa
## 1180      5.05     662597           NA    Africa            Western Africa
## 1181      5.23     662332 4.641378e+08  Americas             South America
## 1182      6.11    4357482           NA  Americas                 Caribbean
## 1183      7.44    2420234 2.030027e+09  Americas           Central America
## 1184      4.25    3868497 1.866656e+10      Asia              Eastern Asia
## 1185      1.92   10204575 1.971856e+10    Europe            Eastern Europe
## 1186      3.46     194935 2.718687e+09    Europe           Northern Europe
## 1187      5.75  508402908 9.589468e+10      Asia             Southern Asia
## 1188      5.60  103067352 2.094409e+10      Asia        South-Eastern Asia
## 1189      6.77   25624650 2.670995e+10      Asia             Southern Asia
## 1190      7.19    8651167           NA      Asia              Western Asia
## 1191      3.90    2869311           NA    Europe           Northern Europe
## 1192      3.80    2591594 1.964512e+10      Asia              Western Asia
## 1193      2.52   52076758 4.008305e+11    Europe           Southern Europe
## 1194      5.82    1786547 4.923669e+09  Americas                 Caribbean
## 1195      2.00   98494630 1.244626e+12      Asia              Eastern Asia
## 1196      8.05    1210948           NA      Asia              Western Asia
## 1197      3.92   12200891           NA      Asia              Central Asia
## 1198      8.13    9822505 2.851835e+09    Africa            Eastern Africa
## 1199      7.17      47461           NA   Oceania                Micronesia
## 1200      4.99   29006181 4.344011e+10      Asia              Eastern Asia
## 1201      7.42     533521           NA      Asia              Western Asia
## 1202      5.19    2655349           NA      Asia              Central Asia
## 1203      5.97    2437527           NA      Asia        South-Eastern Asia
## 1204      1.81    2284214 3.676880e+09    Europe           Northern Europe
## 1205      5.40    2136640           NA      Asia              Western Asia
## 1206      5.80     951736 1.611610e+08    Africa           Southern Africa
## 1207      6.55    1283304 8.548696e+08    Africa            Western Africa
## 1208      7.74    1787080           NA    Africa           Northern Africa
## 1209      2.33    3003571           NA    Europe           Northern Europe
## 1210      2.29     332421 5.073219e+09    Europe            Western Europe
## 1211      3.26     216873           NA      Asia              Eastern Asia
## 1212      3.27    1617797           NA    Europe           Southern Europe
## 1213      7.30    5918060 2.280370e+09    Africa            Eastern Africa
## 1214      7.14    4158132 4.907756e+08    Africa            Eastern Africa
## 1215      5.49    9844116 9.969699e+09      Asia        South-Eastern Asia
## 1216      7.22     105145           NA      Asia             Southern Asia
## 1217      6.84    5635859           NA    Africa            Western Africa
## 1218      2.40     305357           NA    Europe           Southern Europe
## 1219      6.80    1021880 5.414339e+08    Africa            Western Africa
## 1220      5.19     769556           NA    Africa            Eastern Africa
## 1221      6.77   46010959 1.418367e+11  Americas           Central America
## 1222      6.90      54201           NA   Oceania                Micronesia
## 1223      2.80    3392084           NA    Europe            Eastern Europe
## 1224      7.60    1139960           NA      Asia              Eastern Asia
## 1225      2.91     533909           NA    Europe           Southern Europe
## 1226      7.02   14617077 8.817758e+09    Africa           Northern Africa
## 1227      6.60    8482373           NA    Africa            Eastern Africa
## 1228      6.26     700316           NA    Africa           Southern Africa
## 1229      6.00   11100672 1.630270e+09      Asia             Southern Asia
## 1230      2.90   12372136 1.320025e+11    Europe            Western Europe
## 1231      5.23      93682 6.682212e+08   Oceania                 Melanesia
## 1232      3.13    2668590           NA   Oceania Australia and New Zealand
## 1233      6.98    2125233 2.675189e+09  Americas           Central America
## 1234      7.26    4032210 1.372703e+09    Africa            Western Africa
## 1235      6.34   51336375 1.532207e+10    Africa            Western Africa
## 1236      2.89    3754010 4.984012e+10    Europe           Northern Europe
## 1237      7.28     642005 7.240682e+08      Asia              Western Asia
## 1238      6.60   52194629 1.301931e+10      Asia             Southern Asia
## 1239      5.56    1353805 3.080541e+09  Americas           Central America
## 1240      6.24    2208422 1.246460e+09   Oceania                 Melanesia
## 1241      6.28    2229373 1.576476e+09  Americas             South America
## 1242      6.68   11941327 2.392469e+10  Americas             South America
## 1243      6.69   31867565 2.423685e+10      Asia        South-Eastern Asia
## 1244      2.35   31824145           NA    Europe            Eastern Europe
## 1245      3.16    8839831 2.971982e+10    Europe           Southern Europe
## 1246      3.70    2609261 1.444983e+10  Americas                 Caribbean
## 1247      6.99      79735           NA      Asia              Western Asia
## 1248      1.89   19582342           NA    Europe            Eastern Europe
## 1249      2.10  127396324           NA    Europe            Eastern Europe
## 1250      8.20    3319077 6.015998e+08    Africa            Eastern Africa
## 1251      6.61      97877           NA  Americas                 Caribbean
## 1252      6.63      86860 1.139255e+08  Americas                 Caribbean
## 1253      7.46     130687           NA   Oceania                 Polynesia
## 1254      7.26    5015672           NA      Asia              Western Asia
## 1255      7.19    3754268 2.127544e+09    Africa            Western Africa
## 1256      2.46    7888802           NA    Europe           Southern Europe
## 1257      5.89      47851 1.205651e+08    Africa            Eastern Africa
## 1258      6.45    2365801 6.149221e+08    Africa            Western Africa
## 1259      4.07    1921099 5.820947e+09      Asia        South-Eastern Asia
## 1260      2.64    4412907           NA    Europe            Eastern Europe
## 1261      2.34    1636660           NA    Europe           Southern Europe
## 1262      6.47     141027           NA   Oceania                 Melanesia
## 1263      5.84   20325230 5.571576e+10    Africa           Southern Africa
## 1264      2.84   32536637 1.827870e+11    Europe           Southern Europe
## 1265      4.85   11385943 3.362020e+09      Asia             Southern Asia
## 1266      6.83    9013112 3.513241e+09    Africa           Northern Africa
## 1267      6.18     341137           NA  Americas             South America
## 1268      6.82     401295           NA    Africa           Southern Africa
## 1269      2.36    7804200 1.117257e+11    Europe           Northern Europe
## 1270      2.47    5916911           NA    Europe            Western Europe
## 1271      7.57    5579283 2.867416e+09      Asia              Western Asia
## 1272      6.60    2575335           NA      Asia              Central Asia
## 1273      6.80   12038886           NA    Africa            Eastern Africa
## 1274      6.08   32789097 1.377611e+10      Asia        South-Eastern Asia
## 1275      6.27     557252           NA      Asia        South-Eastern Asia
## 1276      6.85    1774029 4.915478e+08    Africa            Western Africa
## 1277      6.80      76787           NA   Oceania                 Polynesia
## 1278      4.20     919902 3.923189e+09  Americas                 Caribbean
## 1279      6.98    4638271 3.866932e+09    Africa           Northern Africa
## 1280      5.87   31718266 6.259856e+10      Asia              Western Asia
## 1281      6.55    1949425           NA      Asia              Central Asia
## 1282      7.11    8292747           NA    Africa            Eastern Africa
## 1283      2.02   45682314           NA    Europe            Eastern Europe
## 1284      6.82     161077           NA      Asia              Western Asia
## 1285      2.70   54606608 6.275216e+11    Europe           Northern Europe
## 1286      2.71  201629471 3.368321e+12  Americas          Northern America
## 1287      2.83    2722874 1.144292e+10  Americas             South America
## 1288      6.71   10559050           NA      Asia              Central Asia
## 1289      6.63      76410           NA   Oceania                 Melanesia
## 1290      6.20   10175143 5.622385e+10  Americas             South America
## 1291      8.05    1184822           NA      Asia              Western Asia
## 1292      6.49   38959335           NA      Asia        South-Eastern Asia
## 1293      7.45    5720538           NA      Asia              Western Asia
## 1294      7.34    3674088 2.091429e+09    Africa            Eastern Africa
## 1295      7.39    4568320 1.761641e+09    Africa            Eastern Africa
## 1296      5.38    1998695           NA    Europe           Southern Europe
## 1297      7.66   13354197 1.509417e+10    Africa           Northern Africa
## 1298      7.40    5962831           NA    Africa             Middle Africa
## 1299      4.04      62002           NA  Americas                 Caribbean
## 1300      3.05   22932201 1.338390e+11  Americas             South America
## 1301      3.61    2332624           NA      Asia              Western Asia
## 1302      3.42      58049           NA  Americas                 Caribbean
## 1303      2.85   11975795 1.314826e+11   Oceania Australia and New Zealand
## 1304      2.62    7390853 7.063611e+10    Europe            Western Europe
## 1305      5.06    4832098           NA      Asia              Western Asia
## 1306      3.75     152607 2.574162e+09  Americas                 Caribbean
## 1307      7.00     196203           NA      Asia              Western Asia
## 1308      6.92   59625294 1.612712e+10      Asia             Southern Asia
## 1309      3.64     236620 1.177044e+09  Americas                 Caribbean
## 1310      2.43    8785138           NA    Europe            Eastern Europe
## 1311      2.43    9543533 9.334020e+10    Europe            Western Europe
## 1312      6.36     112699 1.210144e+08  Americas           Central America
## 1313      6.63    2733450 7.625964e+08    Africa            Western Africa
## 1314      6.67     266293           NA      Asia             Southern Asia
## 1315      6.59    4237126 4.338604e+09  Americas             South America
## 1316      3.24    3619997           NA    Europe           Southern Europe
## 1317      6.70     631276 1.904117e+08    Africa           Southern Africa
## 1318      5.49   88853679 1.436793e+11  Americas             South America
## 1319      5.80     112680           NA      Asia        South-Eastern Asia
## 1320      2.14    8328838           NA    Europe            Eastern Europe
## 1321      6.53    5343020 7.552699e+08    Africa            Western Africa
## 1322      7.25    3235125 4.396432e+08    Africa            Eastern Africa
## 1323      6.75    6695460           NA      Asia        South-Eastern Asia
## 1324      6.06    6280743 2.932095e+09    Africa             Middle Africa
## 1325      2.60   20389445 2.435594e+11  Americas          Northern America
## 1326      6.98     248733           NA    Africa            Western Africa
## 1327      5.95    1718558 5.827685e+08    Africa             Middle Africa
## 1328      6.39    3436227 7.653213e+08    Africa             Middle Africa
## 1329      4.59    8995410 1.923128e+10  Americas             South America
## 1330      5.25  744365635 7.476091e+10      Asia              Eastern Asia
## 1331      6.25   20311369 2.618157e+10  Americas             South America
## 1332      7.04     214038           NA    Africa            Eastern Africa
## 1333      6.14   18378189 5.912914e+09    Africa             Middle Africa
## 1334      6.17    1224041 7.632084e+08    Africa             Middle Africa
## 1335      6.00    1694711 3.509403e+09  Americas           Central America
## 1336      7.81    4591238 3.395015e+09    Africa            Western Africa
## 1337      2.10    4370856           NA    Europe           Southern Europe
## 1338      4.43    8263547           NA  Americas                 Caribbean
## 1339      2.89     591304           NA      Asia              Western Asia
## 1340      2.00    9808728           NA    Europe            Eastern Europe
## 1341      2.35    4831242 7.163578e+10    Europe           Northern Europe
## 1342      6.70     131403           NA    Africa            Eastern Africa
## 1343      6.74    4125107 4.027763e+09  Americas                 Caribbean
## 1344      6.42    5566057 4.775389e+09  Americas             South America
## 1345      6.24   32456565 1.754822e+10    Africa           Northern Africa
## 1346      6.49    3383674 6.321934e+09  Americas           Central America
## 1347      5.64     282445           NA    Africa             Middle Africa
## 1348      6.71    1670821           NA    Africa            Eastern Africa
## 1349      2.01    1319284           NA    Europe           Northern Europe
## 1350      6.88   26280771           NA    Africa            Eastern Africa
## 1351      5.08     487911 5.767067e+08   Oceania                 Melanesia
## 1352      2.32    4584264 4.293372e+10    Europe           Northern Europe
## 1353      2.68   49791771 5.098129e+11    Europe            Western Europe
## 1354      5.22     100031 8.409395e+08   Oceania                 Polynesia
## 1355      4.90     553829 1.430657e+09    Africa             Middle Africa
## 1356      5.94     416342 2.076837e+08    Africa            Western Africa
## 1357      2.68    4577953 3.852569e+09      Asia              Western Asia
## 1358      2.37   77106876           NA    Europe            Western Europe
## 1359      6.95    8057442 2.184014e+09    Africa            Western Africa
## 1360      2.35    8630672 4.646877e+10    Europe           Southern Europe
## 1361      6.40      41360           NA  Americas          Northern America
## 1362      5.04      94962           NA  Americas                 Caribbean
## 1363      6.32    4993104 5.660258e+09  Americas           Central America
## 1364      6.15    4021880           NA    Africa            Western Africa
## 1365      5.09     673893           NA    Africa            Western Africa
## 1366      5.19     671986 4.841589e+08  Americas             South America
## 1367      6.03    4445531           NA  Americas                 Caribbean
## 1368      7.42    2486288 2.151372e+09  Americas           Central America
## 1369      3.96    3901653 1.903159e+10      Asia              Eastern Asia
## 1370      1.95   10238930 2.119745e+10    Europe            Eastern Europe
## 1371      3.34     197356 2.684234e+09    Europe           Northern Europe
## 1372      5.70  519162069 1.033994e+11      Asia             Southern Asia
## 1373      5.58  105907403 2.117971e+10      Asia        South-Eastern Asia
## 1374      6.70   26318116 2.954843e+10      Asia             Southern Asia
## 1375      7.30    8947399           NA      Asia              Western Asia
## 1376      3.86    2882095           NA    Europe           Northern Europe
## 1377      3.80    2652697 2.023350e+10      Asia              Western Asia
## 1378      2.52   52444751 4.296046e+11    Europe           Southern Europe
## 1379      5.79    1807640 5.012720e+09  Americas                 Caribbean
## 1380      2.02   99711082 1.382558e+12      Asia              Eastern Asia
## 1381      8.03    1320414           NA      Asia              Western Asia
## 1382      3.79   12455366           NA      Asia              Central Asia
## 1383      8.13   10154489 2.947692e+09    Africa            Eastern Africa
## 1384      7.01      48440           NA   Oceania                Micronesia
## 1385      4.85   29606633 4.608997e+10      Asia              Eastern Asia
## 1386      7.41     585831           NA      Asia              Western Asia
## 1387      5.11    2735838           NA      Asia              Central Asia
## 1388      5.97    2495093           NA      Asia        South-Eastern Asia
## 1389      1.82    2305718 4.107540e+09    Europe           Northern Europe
## 1390      5.30    2174850           NA      Asia              Western Asia
## 1391      5.80     970972 1.787470e+08    Africa           Southern Africa
## 1392      6.58    1315119 9.125373e+08    Africa            Western Africa
## 1393      7.78    1861661           NA    Africa           Northern Africa
## 1394      2.32    3038216           NA    Europe           Northern Europe
## 1395      2.22     334231 5.084214e+09    Europe            Western Europe
## 1396      2.94     227258           NA      Asia              Eastern Asia
## 1397      3.19    1644944           NA    Europe           Southern Europe
## 1398      7.31    6072270 2.406442e+09    Africa            Eastern Africa
## 1399      7.18    4262013 5.265117e+08    Africa            Eastern Africa
## 1400      5.33   10111920 1.035425e+10      Asia        South-Eastern Asia
## 1401      7.23     107488           NA      Asia             Southern Asia
## 1402      6.86    5706198 9.413971e+08    Africa            Western Africa
## 1403      2.24     304805           NA    Europe           Southern Europe
## 1404      6.80    1052285 5.607475e+08    Africa            Western Africa
## 1405      4.85     784777           NA    Africa            Eastern Africa
## 1406      6.78   47429553 1.501411e+11  Americas           Central America
## 1407      6.91      56324           NA   Oceania                Micronesia
## 1408      2.72    3444850           NA    Europe            Eastern Europe
## 1409      7.59    1173186           NA      Asia              Eastern Asia
## 1410      2.83     530234           NA    Europe           Southern Europe
## 1411      6.95   14978905 9.702077e+09    Africa           Northern Africa
## 1412      6.60    8668529           NA    Africa            Eastern Africa
## 1413      6.30     718622           NA    Africa           Southern Africa
## 1414      5.99   11307139 1.604650e+09      Asia             Southern Asia
## 1415      2.81   12525253 1.389723e+11    Europe            Western Europe
## 1416      5.26      96068 7.043104e+08   Oceania                 Melanesia
## 1417      3.00    2704205           NA   Oceania Australia and New Zealand
## 1418      6.96    2189880 2.861636e+09  Americas           Central America
## 1419      7.30    4144238 1.374390e+09    Africa            Western Africa
## 1420      6.36   52468593 1.290982e+10    Africa            Western Africa
## 1421      2.80    3784579 5.295816e+10    Europe           Northern Europe
## 1422      7.28     660117 1.203540e+09      Asia              Western Asia
## 1423      6.60   53594445 1.372244e+10      Asia             Southern Asia
## 1424      5.47    1393800 3.344416e+09  Americas           Central America
## 1425      6.23    2258877 1.297196e+09   Oceania                 Melanesia
## 1426      6.17    2289579 1.710727e+09  Americas             South America
## 1427      6.61   12282081 2.482777e+10  Americas             South America
## 1428      6.59   32826602 2.552726e+10      Asia        South-Eastern Asia
## 1429      2.30   32085011           NA    Europe            Eastern Europe
## 1430      3.13    8774391 3.196202e+10    Europe           Southern Europe
## 1431      3.53    2634348 1.535748e+10  Americas                 Caribbean
## 1432      6.98      86161           NA      Asia              Western Asia
## 1433      3.65   19810623           NA    Europe            Eastern Europe
## 1434      2.01  128165823           NA    Europe            Eastern Europe
## 1435      8.20    3418313 6.432066e+08    Africa            Eastern Africa
## 1436      6.51      99526           NA  Americas                 Caribbean
## 1437      6.49      87736 1.030755e+08  Americas                 Caribbean
## 1438      7.40     134194           NA   Oceania                 Polynesia
## 1439      7.26    5196349           NA      Asia              Western Asia
## 1440      7.23    3862783 2.101592e+09    Africa            Western Africa
## 1441      2.44    7942638           NA    Europe           Southern Europe
## 1442      5.92      48911 1.211736e+08    Africa            Eastern Africa
## 1443      6.52    2399667 6.151452e+08    Africa            Western Africa
## 1444      3.82    1960547 6.535267e+09      Asia        South-Eastern Asia
## 1445      2.58    4442799           NA    Europe            Eastern Europe
## 1446      2.33    1643697           NA    Europe           Southern Europe
## 1447      6.55     145354           NA   Oceania                 Melanesia
## 1448      5.77   20843785 5.972534e+10    Africa           Southern Africa
## 1449      2.85   32873962 1.907206e+11    Europe           Southern Europe
## 1450      4.73   11661660 3.578501e+09      Asia             Southern Asia
## 1451      6.85    9299545 3.563273e+09    Africa           Northern Africa
## 1452      6.05     350755           NA  Americas             South America
## 1453      6.84     411478           NA    Africa           Southern Africa
## 1454      2.27    7870642 1.154859e+11    Europe           Northern Europe
## 1455      2.40    5991681           NA    Europe            Western Europe
## 1456      7.57    5767478 3.104198e+09      Asia              Western Asia
## 1457      6.69    2659452           NA      Asia              Central Asia
## 1458      6.79   12406040           NA    Africa            Eastern Africa
## 1459      6.01   33778500 1.496306e+10      Asia        South-Eastern Asia
## 1460      6.21     567330           NA      Asia        South-Eastern Asia
## 1461      6.91    1855445 5.185847e+08    Africa            Western Africa
## 1462      6.59      79048           NA   Oceania                 Polynesia
## 1463      3.99     925918 4.003320e+09  Americas                 Caribbean
## 1464      6.87    4737633 3.873194e+09    Africa           Northern Africa
## 1465      5.80   32448404 6.556104e+10      Asia              Western Asia
## 1466      6.47    2008148           NA      Asia              Central Asia
## 1467      7.11    8580632           NA    Africa            Eastern Africa
## 1468      2.01   46060456           NA    Europe            Eastern Europe
## 1469      6.78     171781           NA      Asia              Western Asia
## 1470      2.61   54904680 6.420234e+11    Europe           Northern Europe
## 1471      2.56  203713082 3.452529e+12  Americas          Northern America
## 1472      2.83    2750093 1.102448e+10  Americas             South America
## 1473      6.66   10894306           NA      Asia              Central Asia
## 1474      6.53      78518           NA   Oceania                 Melanesia
## 1475      6.01   10528054 5.781716e+10  Americas             South America
## 1476      8.02    1165200           NA      Asia              Western Asia
## 1477      6.49   40074695           NA      Asia        South-Eastern Asia
## 1478      7.47    5827223           NA      Asia              Western Asia
## 1479      7.38    3792864 2.257064e+09    Africa            Eastern Africa
## 1480      7.40    4718612 1.909037e+09    Africa            Eastern Africa
## 1481      5.27    2049147           NA    Europe           Southern Europe
## 1482      7.66   13744383 1.672378e+10    Africa           Northern Africa
## 1483      7.38    6066094           NA    Africa             Middle Africa
## 1484      3.94      63176           NA  Americas                 Caribbean
## 1485      3.05   23261273 1.402934e+11  Americas             South America
## 1486      3.45    2394635           NA      Asia              Western Asia
## 1487      3.23      58385           NA  Americas                 Caribbean
## 1488      2.89   12305530 1.382446e+11   Oceania Australia and New Zealand
## 1489      2.59    7433328 7.379518e+10    Europe            Western Europe
## 1490      4.90    4950977           NA      Asia              Western Asia
## 1491      3.64     158629 2.790952e+09  Americas                 Caribbean
## 1492      6.86     200953           NA      Asia              Western Asia
## 1493      6.94   61585520 1.765750e+10      Asia             Southern Asia
## 1494      3.46     237199 1.258517e+09  Americas                 Caribbean
## 1495      2.38    8874070           NA    Europe            Eastern Europe
## 1496      2.36    9589107 9.725501e+10    Europe            Western Europe
## 1497      6.34     116061 1.299298e+08  Americas           Central America
## 1498      6.67    2788551 7.918979e+08    Africa            Western Africa
## 1499      6.67     273868           NA      Asia             Southern Asia
## 1500      6.59    4324066 3.810638e+09  Americas             South America
## 1501      3.11    3661642           NA    Europe           Southern Europe
## 1502      6.69     650730 2.105326e+08    Africa           Southern Africa
## 1503      5.33   91213009 1.600979e+11  Americas             South America
## 1504      5.74     118176           NA      Asia        South-Eastern Asia
## 1505      2.13    8386016           NA    Europe            Eastern Europe
## 1506      6.56    5434040 7.784625e+08    Africa            Western Africa
## 1507      7.27    3317315 4.383336e+08    Africa            Eastern Africa
## 1508      6.67    6795514           NA      Asia        South-Eastern Asia
## 1509      6.11    6437157 3.118175e+09    Africa             Middle Africa
## 1510      2.46   20739031 2.564567e+11  Americas          Northern America
## 1511      6.97     257478           NA    Africa            Western Africa
## 1512      5.95    1755260 5.909517e+08    Africa             Middle Africa
## 1513      6.43    3500778 7.618221e+08    Africa             Middle Africa
## 1514      4.39    9187592 1.995278e+10  Americas             South America
## 1515      6.37  765570668 7.169571e+10      Asia              Eastern Asia
## 1516      6.05   20905061 2.786438e+10  Americas             South America
## 1517      7.06     218794           NA    Africa            Eastern Africa
## 1518      6.16   18913177 6.169103e+09    Africa             Middle Africa
## 1519      6.21    1259190 8.214513e+08    Africa             Middle Africa
## 1520      5.66    1746870 3.803667e+09  Americas           Central America
## 1521      7.85    4794399 3.821030e+09    Africa            Western Africa
## 1522      2.07    4389321           NA    Europe           Southern Europe
## 1523      4.31    8413329           NA  Americas                 Caribbean
## 1524      2.78     598491           NA      Asia              Western Asia
## 1525      1.99    9800665           NA    Europe            Eastern Europe
## 1526      2.12    4865343 7.448326e+10    Europe           Northern Europe
## 1527      6.74     140461           NA    Africa            Eastern Africa
## 1528      6.56    4250026 4.037384e+09  Americas                 Caribbean
## 1529      6.34    5730908 4.886444e+09  Americas             South America
## 1530      6.14   33252275 1.802578e+10    Africa           Northern Africa
## 1531      6.40    3477702 6.526556e+09  Americas           Central America
## 1532      5.66     288701           NA    Africa             Middle Africa
## 1533      6.69    1713846           NA    Africa            Eastern Africa
## 1534      2.04    1333213           NA    Europe           Northern Europe
## 1535      6.90   26945459           NA    Africa            Eastern Africa
## 1536      4.89     498887 6.223601e+08   Oceania                 Melanesia
## 1537      2.15    4589226 4.392261e+10    Europe           Northern Europe
## 1538      2.62   50126895 5.315259e+11    Europe            Western Europe
## 1539      5.17     103385 9.664985e+08   Oceania                 Polynesia
## 1540      4.96     565878 1.466549e+09    Africa             Middle Africa
## 1541      5.99     425509 2.275718e+08    Africa            Western Africa
## 1542      2.64    4622441 4.024253e+09      Asia              Western Asia
## 1543      2.28   77611000           NA    Europe            Western Europe
## 1544      6.96    8221021 2.192070e+09    Africa            Western Africa
## 1545      2.36    8682351 4.956550e+10    Europe           Southern Europe
## 1546      5.85      43100           NA  Americas          Northern America
## 1547      4.84      94875           NA  Americas                 Caribbean
## 1548      6.29    5131461 6.156438e+09  Americas           Central America
## 1549      6.16    4094528           NA    Africa            Western Africa
## 1550      5.30     686155           NA    Africa            Western Africa
## 1551      5.15     680068 4.891207e+08  Americas             South America
## 1552      5.94    4534233           NA  Americas                 Caribbean
## 1553      7.38    2552200 2.293324e+09  Americas           Central America
## 1554      3.72    3915095 1.964786e+10      Asia              Eastern Asia
## 1555      1.98   10273730 2.223613e+10    Europe            Eastern Europe
## 1556      3.22     199634 2.537275e+09    Europe           Northern Europe
## 1557      5.64  530274729 1.069025e+11      Asia             Southern Asia
## 1558      5.56  108821565 2.372852e+10      Asia        South-Eastern Asia
## 1559      6.62   27032944 3.324258e+10      Asia             Southern Asia
## 1560      7.36    9260685           NA      Asia              Western Asia
## 1561      3.83    2897541           NA    Europe           Northern Europe
## 1562      3.81    2711303 2.351981e+10      Asia              Western Asia
## 1563      2.52   52802703 4.577203e+11    Europe           Southern Europe
## 1564      5.72    1827989 5.300657e+09  Americas                 Caribbean
## 1565      2.05  100988866 1.560665e+12      Asia              Eastern Asia
## 1566      8.00    1438986           NA      Asia              Western Asia
## 1567      3.68   12682452           NA      Asia              Central Asia
## 1568      8.12   10502250 3.182997e+09    Africa            Eastern Africa
## 1569      6.76      49389           NA   Oceania                Micronesia
## 1570      4.73   30204127 5.148241e+10      Asia              Eastern Asia
## 1571      7.38     639170           NA      Asia              Western Asia
## 1572      5.03    2814423           NA      Asia              Central Asia
## 1573      5.97    2554843           NA      Asia        South-Eastern Asia
## 1574      1.85    2326128 4.389852e+09    Europe           Northern Europe
## 1575      5.18    2210965           NA      Asia              Western Asia
## 1576      5.81     990869 1.780908e+08    Africa           Southern Africa
## 1577      6.62    1348448 9.560550e+08    Africa            Western Africa
## 1578      7.81    1941056           NA    Africa           Northern Africa
## 1579      2.31    3071465           NA    Europe           Northern Europe
## 1580      2.14     335831 5.296931e+09    Europe            Western Europe
## 1581      2.65     237129           NA      Asia              Eastern Asia
## 1582      3.11    1672401           NA    Europe           Southern Europe
## 1583      7.32    6232704 2.570772e+09    Africa            Eastern Africa
## 1584      7.22    4370664 5.163864e+08    Africa            Eastern Africa
## 1585      5.17   10375877 1.118031e+10      Asia        South-Eastern Asia
## 1586      7.24     109901           NA      Asia             Southern Asia
## 1587      6.88    5780834 9.763080e+08    Africa            Western Africa
## 1588      2.11     304514           NA    Europe           Southern Europe
## 1589      6.80    1083586 6.179238e+08    Africa            Western Africa
## 1590      4.52     799139           NA    Africa            Eastern Africa
## 1591      6.78   48893607 1.642893e+11  Americas           Central America
## 1592      6.92      58404           NA   Oceania                Micronesia
## 1593      2.66    3495134           NA    Europe            Eastern Europe
## 1594      7.58    1207108           NA      Asia              Eastern Asia
## 1595      2.77     524844           NA    Europe           Southern Europe
## 1596      6.87   15335173 1.066178e+10    Africa           Northern Africa
## 1597      6.60    8860823           NA    Africa            Eastern Africa
## 1598      6.35     737802           NA    Africa           Southern Africa
## 1599      5.99   11524132 1.615489e+09      Asia             Southern Asia
## 1600      2.72   12675176 1.478889e+11    Europe            Western Europe
## 1601      5.28      98572 8.047630e+08   Oceania                 Melanesia
## 1602      3.02    2738283           NA   Oceania Australia and New Zealand
## 1603      6.94    2256779 2.900067e+09  Americas           Central America
## 1604      7.34    4258415 1.379660e+09    Africa            Western Africa
## 1605      6.39   53640547 1.274866e+10    Africa            Western Africa
## 1606      2.75    3815399 5.415495e+10    Europe           Northern Europe
## 1607      7.29     679593 2.189092e+09      Asia              Western Asia
## 1608      6.60   55045897 1.471501e+10      Asia             Southern Asia
## 1609      5.38    1434660 3.576148e+09  Americas           Central America
## 1610      6.21    2313017 1.353749e+09   Oceania                 Melanesia
## 1611      6.04    2350900 1.764595e+09  Americas             South America
## 1612      6.52   12629333 2.491580e+10  Americas             South America
## 1613      6.49   33797041 2.678969e+10      Asia        South-Eastern Asia
## 1614      2.26   32330582           NA    Europe            Eastern Europe
## 1615      3.09    8709805 3.479882e+10    Europe           Southern Europe
## 1616      3.38    2656275 1.608707e+10  Americas                 Caribbean
## 1617      6.97      93043           NA      Asia              Western Asia
## 1618      3.61   20055983           NA    Europe            Eastern Europe
## 1619      1.97  128837792           NA    Europe            Eastern Europe
## 1620      8.21    3527260 6.883197e+08    Africa            Eastern Africa
## 1621      6.39     101181           NA  Americas                 Caribbean
## 1622      6.35      88615 1.097854e+08  Americas                 Caribbean
## 1623      7.33     137503           NA   Oceania                 Polynesia
## 1624      7.27    5389848 3.709972e+10      Asia              Western Asia
## 1625      7.27    3975614 2.233798e+09    Africa            Western Africa
## 1626      2.42    7998000           NA    Europe           Southern Europe
## 1627      5.90      49985 1.303262e+08    Africa            Eastern Africa
## 1628      6.58    2435197 6.275707e+08    Africa            Western Africa
## 1629      3.58    1998637 7.423671e+09      Asia        South-Eastern Asia
## 1630      2.54    4470632           NA    Europe            Eastern Europe
## 1631      2.31    1651094           NA    Europe           Southern Europe
## 1632      6.66     149926           NA   Oceania                 Melanesia
## 1633      5.70   21374931 6.220595e+10    Africa           Southern Africa
## 1634      2.86   33211168 2.033024e+11    Europe           Southern Europe
## 1635      4.61   11940634 3.786093e+09      Asia             Southern Asia
## 1636      6.87    9598196 3.633228e+09    Africa           Northern Africa
## 1637      5.92     359735           NA  Americas             South America
## 1638      6.86     422266           NA    Africa           Southern Africa
## 1639      2.07    7936726 1.196875e+11    Europe           Northern Europe
## 1640      2.31    6056358           NA    Europe            Western Europe
## 1641      7.57    5963248 3.219956e+09      Asia              Western Asia
## 1642      6.78    2743461           NA      Asia              Central Asia
## 1643      6.79   12787494           NA    Africa            Eastern Africa
## 1644      5.90   34790945 1.617840e+10      Asia        South-Eastern Asia
## 1645      6.13     577824           NA      Asia        South-Eastern Asia
## 1646      6.97    1945781 5.446368e+08    Africa            Western Africa
## 1647      6.37      81096           NA   Oceania                 Polynesia
## 1648      3.80     931466 4.212099e+09  Americas                 Caribbean
## 1649      6.74    4842166 4.276383e+09    Africa           Northern Africa
## 1650      5.72   33196289 7.000476e+10      Asia              Western Asia
## 1651      6.40    2066889           NA      Asia              Central Asia
## 1652      7.12    8872866           NA    Africa            Eastern Africa
## 1653      2.02   46409007           NA    Europe            Eastern Europe
## 1654      6.74     185312           NA      Asia              Western Asia
## 1655      2.52   55171084 6.676064e+11    Europe           Northern Europe
## 1656      2.47  205687611 3.618250e+12  Americas          Northern America
## 1657      2.84    2774771 1.123272e+10  Americas             South America
## 1658      6.61   11240523           NA      Asia              Central Asia
## 1659      6.43      80669           NA   Oceania                 Melanesia
## 1660      5.81   10881995 6.205933e+10  Americas             South America
## 1661      7.98    1141217           NA      Asia              Western Asia
## 1662      6.49   41195833           NA      Asia        South-Eastern Asia
## 1663      7.49    5937125           NA      Asia              Western Asia
## 1664      7.41    3916928 2.285240e+09    Africa            Eastern Africa
## 1665      7.41    4874113 1.946648e+09    Africa            Eastern Africa
## 1666      5.16    2099657           NA    Europe           Southern Europe
## 1667      7.65   14144437 1.813414e+10    Africa           Northern Africa
## 1668      7.34    6177703           NA    Africa             Middle Africa
## 1669      3.82      64307           NA  Americas                 Caribbean
## 1670      3.06   23605992 1.538732e+11  Americas             South America
## 1671      3.31    2456370           NA      Asia              Western Asia
## 1672      3.05      58724           NA  Americas                 Caribbean
## 1673      2.89   12621240 1.479867e+11   Oceania Australia and New Zealand
## 1674      2.49    7473058 7.842647e+10    Europe            Western Europe
## 1675      4.75    5066080           NA      Asia              Western Asia
## 1676      3.57     164250 3.041626e+09  Americas                 Caribbean
## 1677      6.69     206469           NA      Asia              Western Asia
## 1678      6.95   63422570 1.787307e+10      Asia             Southern Asia
## 1679      3.28     237911 1.353138e+09  Americas                 Caribbean
## 1680      2.34    8959483           NA    Europe            Eastern Europe
## 1681      2.28    9629528 1.037028e+11    Europe            Western Europe
## 1682      6.32     119260 1.365645e+08  Americas           Central America
## 1683      6.71    2846652 8.146848e+08    Africa            Western Africa
## 1684      6.67     282210           NA      Asia             Southern Asia
## 1685      6.59    4413584 3.928616e+09  Americas             South America
## 1686      2.99    3702834           NA    Europe           Southern Europe
## 1687      6.67     671305 2.423723e+08    Africa           Southern Africa
## 1688      5.17   93585746 1.756847e+11  Americas             South America
## 1689      5.73     123875           NA      Asia        South-Eastern Asia
## 1690      2.13    8441214           NA    Europe            Eastern Europe
## 1691      6.59    5528172 7.942348e+08    Africa            Western Africa
## 1692      7.29    3392949 4.319360e+08    Africa            Eastern Africa
## 1693      6.58    6902025           NA      Asia        South-Eastern Asia
## 1694      6.16    6600479 3.271011e+09    Africa             Middle Africa
## 1695      2.41   21089228 2.699463e+11  Americas          Northern America
## 1696      6.95     264885           NA    Africa            Western Africa
## 1697      5.95    1792150 6.328585e+08    Africa             Middle Africa
## 1698      6.48    3569778 8.142454e+08    Africa             Middle Africa
## 1699      4.20    9377005 2.064540e+10  Americas             South America
## 1700      5.67  787191243 8.381228e+10      Asia              Eastern Asia
## 1701      5.83   21490948 2.968140e+10  Americas             South America
## 1702      7.06     223629           NA    Africa            Eastern Africa
## 1703      6.19   19458874 6.744609e+09    Africa             Middle Africa
## 1704      6.24    1296137 8.834587e+08    Africa             Middle Africa
## 1705      5.32    1798315 4.015825e+09  Americas           Central America
## 1706      7.88    5010962 4.185526e+09    Africa            Western Africa
## 1707      2.04    4406607           NA    Europe           Southern Europe
## 1708      4.18    8563191           NA  Americas                 Caribbean
## 1709      2.69     606117           NA      Asia              Western Asia
## 1710      2.01    9798793           NA    Europe            Eastern Europe
## 1711      2.00    4898350 7.919245e+10    Europe           Northern Europe
## 1712      6.77     149891           NA    Africa            Eastern Africa
## 1713      6.38    4376056 4.477113e+09  Americas                 Caribbean
## 1714      6.24    5899842 5.152578e+09  Americas             South America
## 1715      6.04   34038147 1.925379e+10    Africa           Northern Africa
## 1716      6.30    3572667 6.754033e+09  Americas           Central America
## 1717      5.67     292014           NA    Africa             Middle Africa
## 1718      6.67    1758668           NA    Africa            Eastern Africa
## 1719      2.07    1346854           NA    Europe           Northern Europe
## 1720      6.94   27653622           NA    Africa            Eastern Africa
## 1721      4.71     509659 6.385191e+08   Oceania                 Melanesia
## 1722      1.94    4595807 4.813623e+10    Europe           Northern Europe
## 1723      2.56   50466183 5.686824e+11    Europe            Western Europe
## 1724      5.12     106858 9.405389e+08   Oceania                 Polynesia
## 1725      5.02     578114 1.585089e+09    Africa             Middle Africa
## 1726      6.04     435800 2.331144e+08    Africa            Western Africa
## 1727      2.61    4665146 4.216538e+09      Asia              Western Asia
## 1728      2.17   78038271           NA    Europe            Western Europe
## 1729      6.96    8397346 2.323730e+09    Africa            Western Africa
## 1730      2.37    8732308 5.447235e+10    Europe           Southern Europe
## 1731      4.58      44703           NA  Americas          Northern America
## 1732      4.69      94682           NA  Americas                 Caribbean
## 1733      6.26    5274726 6.448063e+09  Americas           Central America
## 1734      6.17    4160375           NA    Africa            Western Africa
## 1735      5.64     698917           NA    Africa            Western Africa
## 1736      5.11     687658 5.233317e+08  Americas             South America
## 1737      5.85    4622209           NA  Americas                 Caribbean
## 1738      7.33    2620014 2.308355e+09  Americas           Central America
## 1739      3.55    3928928 2.199971e+10      Asia              Eastern Asia
## 1740      2.01   10309211 2.377042e+10    Europe            Eastern Europe
## 1741      3.12     201941 2.597525e+09    Europe           Northern Europe
## 1742      5.57  541844848 1.138936e+11      Asia             Southern Asia
## 1743      5.52  111800090 2.550279e+10      Asia        South-Eastern Asia
## 1744      6.53   27765239 3.753299e+10      Asia             Southern Asia
## 1745      7.38    9585576           NA      Asia              Western Asia
## 1746      3.82    2918626           NA    Europe           Northern Europe
## 1747      3.81    2775162 2.671044e+10      Asia              Western Asia
## 1748      2.50   53160056 4.856324e+11    Europe           Southern Europe
## 1749      5.62    1849463 5.596152e+09  Americas                 Caribbean
## 1750      2.08  102323674 1.755403e+12      Asia              Eastern Asia
## 1751      7.97    1553585           NA      Asia              Western Asia
## 1752      3.60   12897025           NA      Asia              Central Asia
## 1753      8.10   10867717 3.436339e+09    Africa            Eastern Africa
## 1754      6.43      50303           NA   Oceania                Micronesia
## 1755      4.62   30811523 5.874147e+10      Asia              Eastern Asia
## 1756      7.33     693876           NA      Asia              Western Asia
## 1757      4.96    2890720           NA      Asia              Central Asia
## 1758      5.97    2618246           NA      Asia        South-Eastern Asia
## 1759      1.88    2346012 4.590423e+09    Europe           Northern Europe
## 1760      5.06    2250609           NA      Asia              Western Asia
## 1761      5.81    1011308 1.808468e+08    Africa           Southern Africa
## 1762      6.66    1383305 1.025737e+09    Africa            Western Africa
## 1763      7.84    2025282           NA    Africa           Northern Africa
## 1764      2.31    3104292           NA    Europe           Northern Europe
## 1765      2.05     337565 5.825186e+09    Europe            Western Europe
## 1766      2.39     245310           NA      Asia              Eastern Asia
## 1767      3.04    1698140           NA    Europe           Southern Europe
## 1768      7.32    6400454 2.666437e+09    Africa            Eastern Africa
## 1769      7.26    4484456 5.467621e+08    Africa            Eastern Africa
## 1770      5.01   10640347 1.172686e+10      Asia        South-Eastern Asia
## 1771      7.24     112591           NA      Asia             Southern Asia
## 1772      6.89    5861411 9.785633e+08    Africa            Western Africa
## 1773      2.02     304401           NA    Europe           Southern Europe
## 1774      6.79    1115790 6.256388e+08    Africa            Western Africa
## 1775      4.21     812944           NA    Africa            Eastern Africa
## 1776      6.76   50423127 1.699057e+11  Americas           Central America
## 1777      6.94      60167           NA   Oceania                Micronesia
## 1778      2.61    3544635           NA    Europe            Eastern Europe
## 1779      7.58    1242213           NA      Asia              Eastern Asia
## 1780      2.73     520644           NA    Europe           Southern Europe
## 1781      6.78   15687996 1.155334e+10    Africa           Northern Africa
## 1782      6.60    9058691           NA    Africa            Eastern Africa
## 1783      6.40     758305           NA    Africa           Southern Africa
## 1784      5.98   11750914 1.687595e+09      Asia             Southern Asia
## 1785      2.75   12821786 1.573974e+11    Europe            Western Europe
## 1786      5.30     101494 9.312421e+08   Oceania                 Melanesia
## 1787      3.01    2775684           NA   Oceania Australia and New Zealand
## 1788      6.92    2326136 3.080965e+09  Americas           Central America
## 1789      7.38    4375837 1.303973e+09    Africa            Western Africa
## 1790      6.43   54859201 1.583350e+10    Africa            Western Africa
## 1791      2.69    3845932 5.659442e+10    Europe           Northern Europe
## 1792      7.29     700729 2.750948e+09      Asia              Western Asia
## 1793      6.60   56545924 1.552550e+10      Asia             Southern Asia
## 1794      5.28    1476478 3.881137e+09  Americas           Central America
## 1795      6.19    2371515 1.465750e+09   Oceania                 Melanesia
## 1796      5.89    2412565 1.837339e+09  Americas             South America
## 1797      6.42   12982444 2.586127e+10  Americas             South America
## 1798      6.38   34787588 2.803711e+10      Asia        South-Eastern Asia
## 1799      2.24   32571673           NA    Europe            Eastern Europe
## 1800      3.05    8669641 3.553681e+10    Europe           Southern Europe
## 1801      3.25    2680190 1.751152e+10  Americas                 Caribbean
## 1802      6.95     100697           NA      Asia              Western Asia
## 1803      3.19   20305391           NA    Europe            Eastern Europe
## 1804      1.98  129475269           NA    Europe            Eastern Europe
## 1805      8.22    3640591 7.640856e+08    Africa            Eastern Africa
## 1806      6.25     102747           NA  Americas                 Caribbean
## 1807      6.19      89518 1.129262e+08  Americas                 Caribbean
## 1808      7.27     140520           NA   Oceania                 Polynesia
## 1809      7.27    5601649 3.933976e+10      Asia              Western Asia
## 1810      7.30    4093763 2.087392e+09    Africa            Western Africa
## 1811      2.40    8056663           NA    Europe           Southern Europe
## 1812      5.85      51124 1.303262e+08    Africa            Eastern Africa
## 1813      6.64    2473165 6.810739e+08    Africa            Western Africa
## 1814      3.38    2036270 8.440043e+09      Asia        South-Eastern Asia
## 1815      2.51    4499554           NA    Europe            Eastern Europe
## 1816      2.29    1659553           NA    Europe           Southern Europe
## 1817      6.78     154876           NA   Oceania                 Melanesia
## 1818      5.64   21926165 6.513957e+10    Africa           Southern Africa
## 1819      2.87   33558627 2.214106e+11    Europe           Southern Europe
## 1820      4.48   12217248 4.078259e+09      Asia             Southern Asia
## 1821      6.88    9909152 3.683706e+09    Africa           Northern Africa
## 1822      5.79     366845           NA  Americas             South America
## 1823      6.87     433709           NA    Africa           Southern Africa
## 1824      1.92    7997380 1.256834e+11    Europe           Northern Europe
## 1825      2.22    6114719           NA    Europe            Western Europe
## 1826      7.57    6166933 3.824274e+09      Asia              Western Asia
## 1827      6.84    2829641           NA      Asia              Central Asia
## 1828      6.78   13186560           NA    Africa            Eastern Africa
## 1829      5.76   35826803 1.723819e+10      Asia        South-Eastern Asia
## 1830      6.04     589519           NA      Asia        South-Eastern Asia
## 1831      7.03    2034909 6.036257e+08    Africa            Western Africa
## 1832      6.15      82879           NA   Oceania                 Polynesia
## 1833      3.66     937846 4.327118e+09  Americas                 Caribbean
## 1834      6.59    4950153 4.479418e+09    Africa           Northern Africa
## 1835      5.64   33969201 7.286176e+10      Asia              Western Asia
## 1836      6.35    2126749           NA      Asia              Central Asia
## 1837      7.12    9162773           NA    Africa            Eastern Africa
## 1838      2.03   46746668           NA    Europe            Eastern Europe
## 1839      6.68     205570           NA      Asia              Western Asia
## 1840      2.41   55406435 6.813086e+11    Europe           Northern Europe
## 1841      2.46  207599308 3.730416e+12  Americas          Northern America
## 1842      2.87    2795044 1.189149e+10  Americas             South America
## 1843      6.55   11599763           NA      Asia              Central Asia
## 1844      6.35      82941           NA   Oceania                 Melanesia
## 1845      5.61   11235492 6.249750e+10  Americas             South America
## 1846      7.92    1124929           NA      Asia              Western Asia
## 1847      6.49   42309662           NA      Asia        South-Eastern Asia
## 1848      7.51    6047230           NA      Asia              Western Asia
## 1849      7.43    4047479 2.275255e+09    Africa            Eastern Africa
## 1850      7.42    5036321 2.188582e+09    Africa            Eastern Africa
## 1851      5.05    2150602           NA    Europe           Southern Europe
## 1852      7.64   14550033 1.974131e+10    Africa           Northern Africa
## 1853      7.30    6300969           NA    Africa             Middle Africa
## 1854      3.68      65369           NA  Americas                 Caribbean
## 1855      3.07   23973062 1.585596e+11  Americas             South America
## 1856      3.21    2518408           NA      Asia              Western Asia
## 1857      2.91      59065           NA  Americas                 Caribbean
## 1858      2.86   12904760 1.585803e+11   Oceania Australia and New Zealand
## 1859      2.29    7509746 8.287539e+10    Europe            Western Europe
## 1860      4.61    5178160           NA      Asia              Western Asia
## 1861      3.53     169356 2.869784e+09  Americas                 Caribbean
## 1862      6.50     213102           NA      Asia              Western Asia
## 1863      6.95   65048701 1.887751e+10      Asia             Southern Asia
## 1864      3.11     238847 1.481813e+09  Americas                 Caribbean
## 1865      2.30    9039436           NA    Europe            Eastern Europe
## 1866      2.21    9664320 1.096893e+11    Europe            Western Europe
## 1867      6.30     122179 1.431301e+08  Americas           Central America
## 1868      6.75    2907769 8.317749e+08    Africa            Western Africa
## 1869      6.67     291457           NA      Asia             Southern Asia
## 1870      6.58    4505774 3.909176e+09  Americas             South America
## 1871      2.88    3745637           NA    Europe           Southern Europe
## 1872      6.64     693021 2.838671e+08    Africa           Southern Africa
## 1873      5.02   95982453 1.910922e+11  Americas             South America
## 1874      5.75     129729           NA      Asia        South-Eastern Asia
## 1875      2.14    8494765           NA    Europe            Eastern Europe
## 1876      6.62    5624597 7.951642e+08    Africa            Western Africa
## 1877      7.31    3457113 5.240492e+08    Africa            Eastern Africa
## 1878      6.48    7022185           NA      Asia        South-Eastern Asia
## 1879      6.21    6770967 3.372153e+09    Africa             Middle Africa
## 1880      2.31   21439200 2.769201e+11  Americas          Northern America
## 1881      6.94     270197           NA    Africa            Western Africa
## 1882      5.95    1828710 6.476229e+08    Africa             Middle Africa
## 1883      6.53    3644911 8.293876e+08    Africa             Middle Africa
## 1884      4.02    9561868 2.108360e+10  Americas             South America
## 1885      5.75  808510713 1.000719e+11      Asia              Eastern Asia
## 1886      5.60   22061214 3.174619e+10  Americas             South America
## 1887      7.06     228443           NA    Africa            Eastern Africa
## 1888      6.21   20009902 6.728081e+09    Africa             Middle Africa
## 1889      6.26    1335090 9.396332e+08    Africa             Middle Africa
## 1890      5.01    1848873 4.317138e+09  Americas           Central America
## 1891      7.91    5241914 4.619776e+09    Africa            Western Africa
## 1892      2.01    4423073           NA    Europe           Southern Europe
## 1893      4.03    8715123 1.546896e+10  Americas                 Caribbean
## 1894      2.61     613619           NA      Asia              Western Asia
## 1895      2.05    9811291           NA    Europe            Eastern Europe
## 1896      1.95    4930118 8.079696e+10    Europe           Northern Europe
## 1897      6.80     159667           NA    Africa            Eastern Africa
## 1898      6.18    4503114 5.293143e+09  Americas                 Caribbean
## 1899      6.13    6072520 5.544774e+09  Americas             South America
## 1900      5.94   34808599 2.033172e+10    Africa           Northern Africa
## 1901      6.20    3668592 6.955121e+09  Americas           Central America
## 1902      5.68     290905           NA    Africa             Middle Africa
## 1903      6.65    1805480           NA    Africa            Eastern Africa
## 1904      2.10    1360236           NA    Europe           Northern Europe
## 1905      6.98   28414999           NA    Africa            Eastern Africa
## 1906      4.54     520529 7.196283e+08   Oceania                 Melanesia
## 1907      1.83    4606740 5.070377e+10    Europe           Northern Europe
## 1908      2.49   50843830 6.012879e+11    Europe            Western Europe
## 1909      5.06     110496 9.558387e+08   Oceania                 Polynesia
## 1910      5.08     590119 1.722664e+09    Africa             Middle Africa
## 1911      6.09     447283 2.474599e+08    Africa            Western Africa
## 1912      2.60    4707327 4.724720e+09      Asia              Western Asia
## 1913      2.04   78366605 9.298523e+11    Europe            Western Europe
## 1914      6.95    8596977 2.549677e+09    Africa            Western Africa
## 1915      2.36    8778676 5.880578e+10    Europe           Southern Europe
## 1916      3.90      46075 4.288402e+08  Americas          Northern America
## 1917      4.60      94430           NA  Americas                 Caribbean
## 1918      6.24    5423384 6.816111e+09  Americas           Central America
## 1919      6.20    4215442           NA    Africa            Western Africa
## 1920      6.07     711828 1.040385e+08    Africa            Western Africa
## 1921      5.07     695561 5.456019e+08  Americas             South America
## 1922      5.76    4708639           NA  Americas                 Caribbean
## 1923      7.27    2691309 2.392073e+09  Americas           Central America
## 1924      3.42    3958197 2.409180e+10      Asia              Eastern Asia
## 1925      2.03   10345553 2.488763e+10    Europe            Eastern Europe
## 1926      3.03     204392 2.791211e+09    Europe           Northern Europe
## 1927      5.49  553943226 1.197673e+11      Asia             Southern Asia
## 1928      5.47  114834781 2.758180e+10      Asia        South-Eastern Asia
## 1929      6.44   28514011 4.122475e+10      Asia             Southern Asia
## 1930      7.36    9917982           NA      Asia              Western Asia
## 1931      3.81    2947339           NA    Europe           Northern Europe
## 1932      3.82    2849623 2.866226e+10      Asia              Western Asia
## 1933      2.47   53522670 5.114219e+11    Europe           Southern Europe
## 1934      5.48    1873353 6.271294e+09  Americas                 Caribbean
## 1935      2.10  103707537 1.737432e+12      Asia              Eastern Asia
## 1936      7.93    1654769           NA      Asia              Western Asia
## 1937      3.54   13109992           NA      Asia              Central Asia
## 1938      8.08   11252466 3.276362e+09    Africa            Eastern Africa
## 1939      6.05      51181 5.954363e+07   Oceania                Micronesia
## 1940      4.53   31437141 6.364323e+10      Asia              Eastern Asia
## 1941      7.24     750184           NA      Asia              Western Asia
## 1942      4.89    2964499           NA      Asia              Central Asia
## 1943      5.97    2686025           NA      Asia        South-Eastern Asia
## 1944      1.91    2365753 4.958641e+09    Europe           Northern Europe
## 1945      4.95    2297403           NA      Asia              Western Asia
## 1946      5.81    1032240 1.847840e+08    Africa           Southern Africa
## 1947      6.70    1419728 1.094084e+09    Africa            Western Africa
## 1948      7.87    2114264           NA    Africa           Northern Africa
## 1949      2.31    3137373           NA    Europe           Northern Europe
## 1950      1.96     339673 5.924720e+09    Europe            Western Europe
## 1951      2.17     250997           NA      Asia              Eastern Asia
## 1952      2.98    1720798           NA    Europe           Southern Europe
## 1953      7.33    6576301 2.807130e+09    Africa            Eastern Africa
## 1954      7.30    4603739 5.493828e+08    Africa            Eastern Africa
## 1955      4.87   10908634 1.242889e+10      Asia        South-Eastern Asia
## 1956      7.23     115703           NA      Asia             Southern Asia
## 1957      6.90    5949043 1.038617e+09    Africa            Western Africa
## 1958      1.98     304414 6.277395e+08    Europe           Southern Europe
## 1959      6.78    1148908 7.006274e+08    Africa            Western Africa
## 1960      3.95     826447           NA    Africa            Eastern Africa
## 1961      6.72   52029859 1.809538e+11  Americas           Central America
## 1962      6.94      61433           NA   Oceania                Micronesia
## 1963      2.58    3594516           NA    Europe            Eastern Europe
## 1964      7.57    1278825           NA      Asia              Eastern Asia
## 1965      2.69     519697           NA    Europe           Southern Europe
## 1966      6.69   16039600 1.209790e+10    Africa           Northern Africa
## 1967      6.59    9262078           NA    Africa            Eastern Africa
## 1968      6.46     780386           NA    Africa           Southern Africa
## 1969      5.97   11986974 1.731068e+09      Asia             Southern Asia
## 1970      2.57   12964880 1.663608e+11    Europe            Western Europe
## 1971      5.30     105025 1.219921e+09   Oceania                 Melanesia
## 1972      2.95    2819548           NA   Oceania Australia and New Zealand
## 1973      6.89    2398095 3.122676e+09  Americas           Central America
## 1974      7.42    4497355 1.343819e+09    Africa            Western Africa
## 1975      6.47   56131844 1.979303e+10    Africa            Western Africa
## 1976      2.50    3875719 5.772553e+10    Europe           Northern Europe
## 1977      7.31     723850 3.133194e+09      Asia              Western Asia
## 1978      6.60   58094239 1.728818e+10      Asia             Southern Asia
## 1979      5.17    1519293 4.129016e+09  Americas           Central America
## 1980      6.16    2434755 1.624679e+09   Oceania                 Melanesia
## 1981      5.74    2474102 1.926998e+09  Americas             South America
## 1982      6.31   13341071 2.737076e+10  Americas             South America
## 1983      6.26   35804731 2.909260e+10      Asia        South-Eastern Asia
## 1984      2.23   32816751           NA    Europe            Eastern Europe
## 1985      2.99    8670352 4.001899e+10    Europe           Southern Europe
## 1986      3.15    2709813 1.903275e+10  Americas                 Caribbean
## 1987      6.92     109329           NA      Asia              Western Asia
## 1988      2.87   20549016           NA    Europe            Eastern Europe
## 1989      2.00  130126383           NA    Europe            Eastern Europe
## 1990      8.23    3754546 8.099416e+08    Africa            Eastern Africa
## 1991      6.10     104162           NA  Americas                 Caribbean
## 1992      6.01      90457 1.250611e+08  Americas                 Caribbean
## 1993      7.19     143175           NA   Oceania                 Polynesia
## 1994      7.28    5836394 4.407410e+10      Asia              Western Asia
## 1995      7.34    4217754 2.266116e+09    Africa            Western Africa
## 1996      2.38    8119861           NA    Europe           Southern Europe
## 1997      5.76      52364 1.418885e+08    Africa            Eastern Africa
## 1998      6.70    2514151 7.397858e+08    Africa            Western Africa
## 1999      3.19    2074071 9.603757e+09      Asia        South-Eastern Asia
## 2000      2.50    4531874           NA    Europe            Eastern Europe
## 2001      2.27    1669583           NA    Europe           Southern Europe
## 2002      6.91     160292           NA   Oceania                 Melanesia
## 2003      5.59   22502502 6.855845e+10    Africa           Southern Africa
## 2004      2.87   33923240 2.309776e+11    Europe           Southern Europe
## 2005      4.34   12487493 4.235135e+09      Asia             Southern Asia
## 2006      6.89   10232758 3.901968e+09    Africa           Northern Africa
## 2007      5.65     371268           NA  Americas             South America
## 2008      6.88     445844 2.570786e+08    Africa           Southern Africa
## 2009      1.92    8049049 1.332773e+11    Europe           Northern Europe
## 2010      2.12    6169357           NA    Europe            Western Europe
## 2011      7.57    6378802 3.678653e+09      Asia              Western Asia
## 2012      6.88    2919586           NA      Asia              Central Asia
## 2013      6.77   13605504           NA    Africa            Eastern Africa
## 2014      5.60   36884914 1.920472e+10      Asia        South-Eastern Asia
## 2015      5.92     602737           NA      Asia        South-Eastern Asia
## 2016      7.08    2115521 6.188631e+08    Africa            Western Africa
## 2017      5.94      84370           NA   Oceania                 Polynesia
## 2018      3.55     945996 4.480023e+09  Americas                 Caribbean
## 2019      6.44    5060393 4.688591e+09    Africa           Northern Africa
## 2020      5.56   34772031 7.521775e+10      Asia              Western Asia
## 2021      6.30    2188499           NA      Asia              Central Asia
## 2022      7.12    9446024           NA    Africa            Eastern Africa
## 2023      2.05   47086758           NA    Europe            Eastern Europe
## 2024      6.61     235434           NA      Asia              Western Asia
## 2025      2.29   55611401 6.980349e+11    Europe           Northern Europe
## 2026      2.46  209485807 3.737877e+12  Americas          Northern America
## 2027      2.90    2809799 1.216894e+10  Americas             South America
## 2028      6.49   11972994           NA      Asia              Central Asia
## 2029      6.27      85388           NA   Oceania                 Melanesia
## 2030      5.40   11587758 6.731725e+10  Americas             South America
## 2031      7.86    1124843           NA      Asia              Western Asia
## 2032      6.47   43407291           NA      Asia        South-Eastern Asia
## 2033      7.54    6156234           NA      Asia              Western Asia
## 2034      7.44    4185378 2.384402e+09    Africa            Eastern Africa
## 2035      7.42    5206311 2.682439e+09    Africa            Eastern Africa
## 2036      4.93    2202040           NA    Europe           Southern Europe
## 2037      7.62   14960111 1.750428e+10    Africa           Northern Africa
## 2038      7.26    6437645           NA    Africa             Middle Africa
## 2039      3.52      66338           NA  Americas                 Caribbean
## 2040      3.10   24366442 1.675311e+11  Americas             South America
## 2041      3.12    2580894           NA      Asia              Western Asia
## 2042      2.79      59438           NA  Americas                 Caribbean
## 2043      2.95   13150591 1.649541e+11   Oceania Australia and New Zealand
## 2044      2.20    7543451 8.711444e+10    Europe            Western Europe
## 2045      4.48    5287272           NA      Asia              Western Asia
## 2046      3.50     173867 2.916462e+09  Americas                 Caribbean
## 2047      6.29     220808           NA      Asia              Western Asia
## 2048      6.94   66417450 1.784312e+10      Asia             Southern Asia
## 2049      2.95     240038 1.539792e+09  Americas                 Caribbean
## 2050      2.28    9113278           NA    Europe            Eastern Europe
## 2051      2.13    9692900 1.140614e+11    Europe            Western Europe
## 2052      6.29     124792 1.487972e+08  Americas           Central America
## 2053      6.79    2971941 8.193245e+08    Africa            Western Africa
## 2054      6.67     301653           NA      Asia             Southern Asia
## 2055      6.55    4600596 4.107111e+09  Americas             South America
## 2056      2.78    3790948           NA    Europe           Southern Europe
## 2057      6.61     715811 3.571648e+08    Africa           Southern Africa
## 2058      4.90   98402200 2.126762e+11  Americas             South America
## 2059      5.77     135716           NA      Asia        South-Eastern Asia
## 2060      2.14    8546810           NA    Europe            Eastern Europe
## 2061      6.66    5723379 8.064026e+08    Africa            Western Africa
## 2062      7.33    3507593 5.384439e+08    Africa            Eastern Africa
## 2063      6.34    7167716           NA      Asia        South-Eastern Asia
## 2064      6.25    6948847 3.489494e+09    Africa             Middle Africa
## 2065      2.14   21790338 2.883227e+11  Americas          Northern America
## 2066      6.91     273053           NA    Africa            Western Africa
## 2067      5.95    1864757 6.549418e+08    Africa             Middle Africa
## 2068      6.58    3727382 8.107461e+08    Africa             Middle Africa
## 2069      3.85    9741579 2.298491e+10  Americas             South America
## 2070      5.40  829367784 1.070769e+11      Asia              Eastern Asia
## 2071      5.37   22611988 3.363548e+10  Americas             South America
## 2072      7.06     233125           NA    Africa            Eastern Africa
## 2073      6.24   20563111 7.132103e+09    Africa             Middle Africa
## 2074      6.28    1376189 1.012483e+09    Africa             Middle Africa
## 2075      4.73    1898366 4.609775e+09  Americas           Central America
## 2076      7.93    5487594 5.056651e+09    Africa            Western Africa
## 2077      1.99    4438818           NA    Europe           Southern Europe
## 2078      3.86    8869961 1.679679e+10  Americas                 Caribbean
## 2079      2.55     620860           NA      Asia              Western Asia
## 2080      2.10    9840280           NA    Europe            Eastern Europe
## 2081      2.04    4960476 8.322240e+10    Europe           Northern Europe
## 2082      6.83     169370           NA    Africa            Eastern Africa
## 2083      5.98    4631114 5.868585e+09  Americas                 Caribbean
## 2084      6.01    6248831 5.902954e+09  Americas             South America
## 2085      5.85   35561087 2.103131e+10    Africa           Northern Africa
## 2086      6.11    3765252 7.223467e+09  Americas           Central America
## 2087      5.68     284915           NA    Africa             Middle Africa
## 2088      6.64    1854395           NA    Africa            Eastern Africa
## 2089      2.12    1373336           NA    Europe           Northern Europe
## 2090      7.02   29246170           NA    Africa            Eastern Africa
## 2091      4.40     531601 7.692035e+08   Oceania                 Melanesia
## 2092      1.70    4623389 5.189882e+10    Europe           Northern Europe
## 2093      2.41   51273975 6.333401e+11    Europe            Western Europe
## 2094      4.98     114311 1.070562e+09   Oceania                 Polynesia
## 2095      5.14     601734 1.899388e+09    Africa             Middle Africa
## 2096      6.14     460193 2.472968e+08    Africa            Western Africa
## 2097      2.59    4749544 4.841464e+09      Asia              Western Asia
## 2098      1.92   78584779 9.589818e+11    Europe            Western Europe
## 2099      6.94    8827273 2.682671e+09    Africa            Western Africa
## 2100      2.36    8819206 6.341685e+10    Europe           Southern Europe
## 2101      3.25      47190 4.848504e+08  Americas          Northern America
## 2102      4.56      94180           NA  Americas                 Caribbean
## 2103      6.22    5577824 7.196706e+09  Americas           Central America
## 2104      6.22    4259102           NA    Africa            Western Africa
## 2105      6.49     724863 9.996962e+07    Africa            Western Africa
## 2106      5.02     703811 5.625857e+08  Americas             South America
## 2107      5.69    4793157           NA  Americas                 Caribbean
## 2108      7.20    2766444 2.487636e+09  Americas           Central America
## 2109      3.33    4005761 2.587642e+10      Asia              Eastern Asia
## 2110      2.05   10381705 2.643066e+10    Europe            Eastern Europe
## 2111      2.95     207050 3.155766e+09    Europe           Northern Europe
## 2112      5.41  566605402 1.217350e+11      Asia             Southern Asia
## 2113      5.41  117921994 2.951180e+10      Asia        South-Eastern Asia
## 2114      6.36   29281130 4.657543e+10      Asia             Southern Asia
## 2115      7.31   10255904           NA      Asia              Western Asia
## 2116      3.81    2984044           NA    Europe           Northern Europe
## 2117      3.81    2936668 3.187940e+10      Asia              Western Asia
## 2118      2.43   53891946 5.207201e+11    Europe           Southern Europe
## 2119      5.31    1900243 6.425447e+09  Americas                 Caribbean
## 2120      2.11  105142875 1.819074e+12      Asia              Eastern Asia
## 2121      7.88    1739903           NA      Asia              Western Asia
## 2122      3.49   13325342           NA      Asia              Central Asia
## 2123      8.05   11657479 4.002859e+09    Africa            Eastern Africa
## 2124      5.67      52020 5.818003e+07   Oceania                Micronesia
## 2125      4.41   32087884 6.888919e+10      Asia              Eastern Asia
## 2126      7.12     807900           NA      Asia              Western Asia
## 2127      4.82    3035474           NA      Asia              Central Asia
## 2128      5.98    2759634           NA      Asia        South-Eastern Asia
## 2129      1.94    2385561 5.342375e+09    Europe           Northern Europe
## 2130      4.84    2353569           NA      Asia              Western Asia
## 2131      5.81    1053524 1.942333e+08    Africa           Southern Africa
## 2132      6.74    1457714 1.147747e+09    Africa            Western Africa
## 2133      7.90    2208125           NA    Africa           Northern Africa
## 2134      2.30    3170887           NA    Europe           Northern Europe
## 2135      1.87     342224 6.082746e+09    Europe            Western Europe
## 2136      1.98     253881           NA      Asia              Eastern Asia
## 2137      2.93    1739525           NA    Europe           Southern Europe
## 2138      7.33    6760352 2.917432e+09    Africa            Eastern Africa
## 2139      7.35    4728693 6.384848e+08    Africa            Eastern Africa
## 2140      4.74   11182078 1.314398e+10      Asia        South-Eastern Asia
## 2141      7.20     119315           NA      Asia             Southern Asia
## 2142      6.91    6044532 1.065299e+09    Africa            Western Africa
## 2143      1.96     304546 6.431442e+08    Europe           Southern Europe
## 2144      6.77    1182945 7.135392e+08    Africa            Western Africa
## 2145      3.74     839600           NA    Africa            Eastern Africa
## 2146      6.64   53719547 1.877622e+11  Americas           Central America
## 2147      6.93      62107           NA   Oceania                Micronesia
## 2148      2.56    3645515           NA    Europe            Eastern Europe
## 2149      7.55    1317049           NA      Asia              Eastern Asia
## 2150      2.66     522783           NA    Europe           Southern Europe
## 2151      6.59   16389949 1.277501e+10    Africa           Northern Africa
## 2152      6.59    9468836           NA    Africa            Eastern Africa
## 2153      6.52     804309           NA    Africa           Southern Africa
## 2154      5.96   12232454 1.710375e+09      Asia             Southern Asia
## 2155      2.36   13104216 1.735656e+11    Europe            Western Europe
## 2156      5.26     109269 1.305305e+09   Oceania                 Melanesia
## 2157      3.02    2871810           NA   Oceania Australia and New Zealand
## 2158      6.86    2472656 3.225872e+09  Americas           Central America
## 2159      7.46    4623121 1.420139e+09    Africa            Western Africa
## 2160      6.52   57453734 2.261106e+10    Africa            Western Africa
## 2161      2.49    3904750 6.096841e+10    Europe           Northern Europe
## 2162      7.35     748971 3.161338e+09      Asia              Western Asia
## 2163      6.60   59690467 1.736915e+10      Asia             Southern Asia
## 2164      5.06    1563113 4.527296e+09  Americas           Central America
## 2165      6.14    2503074 1.726956e+09   Oceania                 Melanesia
## 2166      5.59    2535355 2.031863e+09  Americas             South America
## 2167      6.19   13704333 2.851510e+10  Americas             South America
## 2168      6.15   36851055 3.067193e+10      Asia        South-Eastern Asia
## 2169      2.23   33068997           NA    Europe            Eastern Europe
## 2170      2.94    8717871 4.267291e+10    Europe           Southern Europe
## 2171      3.07    2745952 2.023882e+10  Americas                 Caribbean
## 2172      6.87     119246           NA      Asia              Western Asia
## 2173      2.65   20783864           NA    Europe            Eastern Europe
## 2174      2.02  130808492           NA    Europe            Eastern Europe
## 2175      8.25    3868345 8.197147e+08    Africa            Eastern Africa
## 2176      5.95     105389           NA  Americas                 Caribbean
## 2177      5.83      91440 1.287730e+08  Americas                 Caribbean
## 2178      7.12     145437           NA   Oceania                 Polynesia
## 2179      7.29    6096106 5.286367e+10      Asia              Western Asia
## 2180      7.37    4348499 2.262933e+09    Africa            Western Africa
## 2181      2.37    8187994           NA    Europe           Southern Europe
## 2182      5.63      53706 1.643804e+08    Africa            Eastern Africa
## 2183      6.75    2558395 7.654261e+08    Africa            Western Africa
## 2184      3.01    2112873 1.076103e+10      Asia        South-Eastern Asia
## 2185      2.50    4568274           NA    Europe            Eastern Europe
## 2186      2.26    1681426           NA    Europe           Southern Europe
## 2187      7.04     166214           NA   Oceania                 Melanesia
## 2188      5.54   23106806 7.149207e+10    Africa           Southern Africa
## 2189      2.87   34305591 2.417168e+11    Europe           Southern Europe
## 2190      4.21   12749209 4.290484e+09      Asia             Southern Asia
## 2191      6.90   10568788 3.989658e+09    Africa           Northern Africa
## 2192      5.50     372619           NA  Americas             South America
## 2193      6.88     458717 2.924105e+08    Africa           Southern Africa
## 2194      1.96    8090044 1.345362e+11    Europe           Northern Europe
## 2195      2.02    6221634           NA    Europe            Western Europe
## 2196      7.57    6599366 4.043428e+09      Asia              Western Asia
## 2197      6.87    3013956           NA      Asia              Central Asia
## 2198      6.77   14045757           NA    Africa            Eastern Africa
## 2199      5.40   37964925 2.014486e+10      Asia        South-Eastern Asia
## 2200      5.75     618508           NA      Asia        South-Eastern Asia
## 2201      7.14    2185661 6.188631e+08    Africa            Western Africa
## 2202      5.76      85520           NA   Oceania                 Polynesia
## 2203      3.48     956364 4.526630e+09  Americas                 Caribbean
## 2204      6.29    5172692 5.183715e+09    Africa           Northern Africa
## 2205      5.48   35608079 7.940489e+10      Asia              Western Asia
## 2206      6.25    2252386           NA      Asia              Central Asia
## 2207      7.11    9720365           NA    Africa            Eastern Africa
## 2208      2.06   47433807           NA    Europe            Eastern Europe
## 2209      6.51     275160           NA      Asia              Western Asia
## 2210      2.18   55785325 7.121647e+11    Europe           Northern Europe
## 2211      2.27  211357912 3.867133e+12  Americas          Northern America
## 2212      2.94    2818269 1.213831e+10  Americas             South America
## 2213      6.42   12361237           NA      Asia              Central Asia
## 2214      6.20      88023           NA   Oceania                 Melanesia
## 2215      5.22   11937803 6.831307e+10  Americas             South America
## 2216      7.80    1144297           NA      Asia              Western Asia
## 2217      6.42   44485910           NA      Asia        South-Eastern Asia
## 2218      7.59    6262934           NA      Asia              Western Asia
## 2219      7.44    4331002 2.382350e+09    Africa            Eastern Africa
## 2220      7.42    5385342 2.921647e+09    Africa            Eastern Africa
## 2221      4.81    2253842           NA    Europe           Southern Europe
## 2222      7.59   15377095 2.230464e+10    Africa           Northern Africa
## 2223      7.23    6587647           NA    Africa             Middle Africa
## 2224      3.33      67205           NA  Americas                 Caribbean
## 2225      3.15   24782950 1.702592e+11  Americas             South America
## 2226      3.03    2643464           NA      Asia              Western Asia
## 2227      2.69      59849           NA  Americas                 Caribbean
## 2228      2.74   13364238 1.714387e+11   Oceania Australia and New Zealand
## 2229      2.09    7573660 9.252239e+10    Europe            Western Europe
## 2230      4.35    5393176           NA      Asia              Western Asia
## 2231      3.47     177844 2.814463e+09  Americas                 Caribbean
## 2232      6.09     229588           NA      Asia              Western Asia
## 2233      6.93   67578486 1.534977e+10      Asia             Southern Asia
## 2234      2.79     241441 1.559406e+09  Americas                 Caribbean
## 2235      2.25    9181643           NA    Europe            Eastern Europe
## 2236      2.05    9715673 1.201016e+11    Europe            Western Europe
## 2237      6.28     127148 1.640018e+08  Americas           Central America
## 2238      6.82    3039300 8.719773e+08    Africa            Western Africa
## 2239      6.68     312712           NA      Asia             Southern Asia
## 2240      6.50    4698090 4.434345e+09  Americas             South America
## 2241      2.68    3838002           NA    Europe           Southern Europe
## 2242      6.58     739754 4.513203e+08    Africa           Southern Africa
## 2243      4.78  100844391 2.383097e+11  Americas             South America
## 2244      5.76     141836           NA      Asia        South-Eastern Asia
## 2245      2.16    8596962           NA    Europe            Eastern Europe
## 2246      6.70    5825171 8.250426e+08    Africa            Western Africa
## 2247      7.35    3547335 5.039622e+08    Africa            Eastern Africa
## 2248      6.17    7331162           NA      Asia        South-Eastern Asia
## 2249      6.29    7134374 3.582798e+09    Africa             Middle Africa
## 2250      1.97   22141998 3.040244e+11  Americas          Northern America
## 2251      6.89     273788           NA    Africa            Western Africa
## 2252      5.95    1900702 6.549367e+08    Africa             Middle Africa
## 2253      6.64    3816299 8.200665e+08    Africa             Middle Africa
## 2254      3.68    9916558 2.279662e+10  Americas             South America
## 2255      4.92  849787991 1.111458e+11      Asia              Eastern Asia
## 2256      5.15   23146803 3.621647e+10  Americas             South America
## 2257      7.06     237797           NA    Africa            Eastern Africa
## 2258      6.27   21120996 7.142882e+09    Africa             Middle Africa
## 2259      6.30    1419305 1.099735e+09    Africa             Middle Africa
## 2260      4.49    1947048 4.986764e+09  Americas           Central America
## 2261      7.94    5747633 5.270882e+09    Africa            Western Africa
## 2262      1.98    4453985           NA    Europe           Southern Europe
## 2263      3.65    9025299 1.760752e+10  Americas                 Caribbean
## 2264      2.49     628000           NA      Asia              Western Asia
## 2265      2.15    9882993           NA    Europe            Eastern Europe
## 2266      2.03    4989146 8.669693e+10    Europe           Northern Europe
## 2267      6.84     179212           NA    Africa            Eastern Africa
## 2268      5.78    4759935 6.478575e+09  Americas                 Caribbean
## 2269      5.87    6428707 6.174089e+09  Americas             South America
## 2270      5.76   36302154 2.145802e+10    Africa           Northern Africa
## 2271      6.01    3862132 7.665365e+09  Americas           Central America
## 2272      5.68     274906           NA    Africa             Middle Africa
## 2273      6.63    1905406           NA    Africa            Eastern Africa
## 2274      2.13    1386099           NA    Europe           Northern Europe
## 2275      7.06   30135007           NA    Africa            Eastern Africa
## 2276      4.28     542811 8.267805e+08   Oceania                 Melanesia
## 2277      1.59    4644847 5.591345e+10    Europe           Northern Europe
## 2278      2.33   51741044 6.620772e+11    Europe            Western Europe
## 2279      4.89     118279 1.020299e+09   Oceania                 Polynesia
## 2280      5.21     613129 2.114721e+09    Africa             Middle Africa
## 2281      6.19     474538 2.478946e+08    Africa            Western Africa
## 2282      2.58    4791480 4.978811e+09      Asia              Western Asia
## 2283      1.80   78700104 1.000221e+12    Europe            Western Europe
## 2284      6.92    9083575 2.615936e+09    Africa            Western Africa
## 2285      2.35    8856097 6.986010e+10    Europe           Southern Europe
## 2286      2.77      48073 5.148010e+08  Americas          Northern America
## 2287      4.54      93937           NA  Americas                 Caribbean
## 2288      6.21    5737720 7.724444e+09  Americas           Central America
## 2289      6.25    4293208           NA    Africa            Western Africa
## 2290      6.81     738117 1.063425e+08    Africa            Western Africa
## 2291      4.97     712188 5.439209e+08  Americas             South America
## 2292      5.64    4876558           NA  Americas                 Caribbean
## 2293      7.11    2845260 2.630981e+09  Americas           Central America
## 2294      3.24    4068406 2.872355e+10      Asia              Eastern Asia
## 2295      2.07   10417419 2.804293e+10    Europe            Eastern Europe
## 2296      2.88     209868 3.350708e+09    Europe           Northern Europe
## 2297      5.32  579800632 1.210614e+11      Asia             Southern Asia
## 2298      5.34  121059511 3.183813e+10      Asia        South-Eastern Asia
## 2299      6.29   30073845 5.416181e+10      Asia             Southern Asia
## 2300      7.23   10599846           NA      Asia              Western Asia
## 2301      3.79    3027538           NA    Europe           Northern Europe
## 2302      3.80    3033919 3.623439e+10      Asia              Western Asia
## 2303      2.38   54262086 5.399372e+11    Europe           Southern Europe
## 2304      5.11    1929556 7.582577e+09  Americas                 Caribbean
## 2305      2.11  106616535 1.972122e+12      Asia              Eastern Asia
## 2306      7.82    1811870           NA      Asia              Western Asia
## 2307      3.44   13540301           NA      Asia              Central Asia
## 2308      8.01   12083165 4.686644e+09    Africa            Eastern Africa
## 2309      5.35      52823 6.520774e+07   Oceania                Micronesia
## 2310      4.27   32759447 7.196719e+10      Asia              Eastern Asia
## 2311      6.98     866747           NA      Asia              Western Asia
## 2312      4.72    3103694           NA      Asia              Central Asia
## 2313      5.99    2837967           NA      Asia        South-Eastern Asia
## 2314      1.96    2405212 5.616740e+09    Europe           Northern Europe
## 2315      4.73    2416743           NA      Asia              Western Asia
## 2316      5.80    1075281 1.938396e+08    Africa           Southern Africa
## 2317      6.78    1497356 1.195269e+09    Africa            Western Africa
## 2318      7.93    2306668           NA    Africa           Northern Africa
## 2319      2.29    3204466           NA    Europe           Northern Europe
## 2320      1.78     345108 6.484098e+09    Europe            Western Europe
## 2321      1.82     254282           NA      Asia              Eastern Asia
## 2322      2.88    1754954           NA    Europe           Southern Europe
## 2323      7.32    6952383 2.880304e+09    Africa            Eastern Africa
## 2324      7.39    4859569 6.782710e+08    Africa            Eastern Africa
## 2325      4.60   11460080 1.437714e+10      Asia        South-Eastern Asia
## 2326      7.16     123372           NA      Asia             Southern Asia
## 2327      6.92    6147459 1.127556e+09    Africa            Western Africa
## 2328      1.98     304850 6.806930e+08    Europe           Southern Europe
## 2329      6.76    1217912 7.083096e+08    Africa            Western Africa
## 2330      3.58     852397           NA    Africa            Eastern Africa
## 2331      6.53   55480125 2.032128e+11  Americas           Central America
## 2332      6.89      62298           NA   Oceania                Micronesia
## 2333      2.54    3697153           NA    Europe            Eastern Europe
## 2334      7.50    1356669           NA      Asia              Eastern Asia
## 2335      2.63     529209           NA    Europe           Southern Europe
## 2336      6.49   16740525 1.308636e+10    Africa           Northern Africa
## 2337      6.58    9679753           NA    Africa            Eastern Africa
## 2338      6.57     829806           NA    Africa           Southern Africa
## 2339      5.95   12487785 1.763701e+09      Asia             Southern Asia
## 2340      2.15   13239283 1.779160e+11    Europe            Western Europe
## 2341      5.17     114093 1.349666e+09   Oceania                 Melanesia
## 2342      2.90    2930469           NA   Oceania Australia and New Zealand
## 2343      6.81    2549779 3.297510e+09  Americas           Central America
## 2344      7.50    4753054 1.346771e+09    Africa            Western Africa
## 2345      6.58   58829319 2.337176e+10    Africa            Western Africa
## 2346      2.38    3932945 6.418025e+10    Europe           Northern Europe
## 2347      7.41     776379 3.471946e+09      Asia              Western Asia
## 2348      6.61   61341255 1.751044e+10      Asia             Southern Asia
## 2349      4.94    1607835 4.734659e+09  Americas           Central America
## 2350      6.11    2576093 1.824417e+09   Oceania                 Melanesia
## 2351      5.46    2596741 2.162739e+09  Americas             South America
## 2352      6.07   14072476 2.933342e+10  Americas             South America
## 2353      6.04   37925400 3.234257e+10      Asia        South-Eastern Asia
## 2354      2.23   33328713           NA    Europe            Eastern Europe
## 2355      2.88    8806016 4.609344e+10    Europe           Southern Europe
## 2356      3.01    2787351 2.173275e+10  Americas                 Caribbean
## 2357      6.79     130377           NA      Asia              Western Asia
## 2358      2.53   21011826           NA    Europe            Eastern Europe
## 2359      2.03  131517584           NA    Europe            Eastern Europe
## 2360      8.28    3983707 8.218711e+08    Africa            Eastern Africa
## 2361      5.81     106458           NA  Americas                 Caribbean
## 2362      5.63      92465 1.620369e+08  Americas                 Caribbean
## 2363      7.04     147323           NA   Oceania                 Polynesia
## 2364      7.30    6382106 6.528334e+10      Asia              Western Asia
## 2365      7.41    4485342 2.407381e+09    Africa            Western Africa
## 2366      2.37    8260626           NA    Europe           Southern Europe
## 2367      5.47      55128 1.747500e+08    Africa            Eastern Africa
## 2368      6.80    2605837 7.723168e+08    Africa            Western Africa
## 2369      2.84    2152603 1.221409e+10      Asia        South-Eastern Asia
## 2370      2.50    4608266           NA    Europe            Eastern Europe
## 2371      2.24    1694979           NA    Europe           Southern Europe
## 2372      7.15     172599           NA   Oceania                 Melanesia
## 2373      5.48   23736489 7.267511e+10    Africa           Southern Africa
## 2374      2.86   34701025 2.614161e+11    Europe           Southern Europe
## 2375      4.08   13003394 4.272872e+09      Asia             Southern Asia
## 2376      6.91   10918137 3.787343e+09    Africa           Northern Africa
## 2377      5.34     371318           NA  Americas             South America
## 2378      6.87     472337 3.082717e+08    Africa           Southern Africa
## 2379      1.91    8121560 1.376154e+11    Europe           Northern Europe
## 2380      1.92    6270112           NA    Europe            Western Europe
## 2381      7.56    6828765 5.055402e+09      Asia              Western Asia
## 2382      6.81    3112041           NA      Asia              Central Asia
## 2383      6.76   14506496           NA    Africa            Eastern Africa
## 2384      5.18   39061999 2.100676e+10      Asia        South-Eastern Asia
## 2385      5.54     636100           NA      Asia        South-Eastern Asia
## 2386      7.18    2247575 6.660523e+08    Africa            Western Africa
## 2387      5.62      86349           NA   Oceania                 Polynesia
## 2388      3.43     968742 4.788285e+09  Americas                 Caribbean
## 2389      6.16    5287548 6.103447e+09    Africa           Northern Africa
## 2390      5.38   36475356 8.530133e+10      Asia              Western Asia
## 2391      6.18    2318070           NA      Asia              Central Asia
## 2392      7.11    9988321           NA    Africa            Eastern Africa
## 2393      2.06   47783013           NA    Europe            Eastern Europe
## 2394      6.40     324069           NA      Asia              Western Asia
## 2395      2.07   55927492 7.375639e+11    Europe           Northern Europe
## 2396      2.01  213219515 4.080668e+12  Americas          Northern America
## 2397      2.97    2821437 1.197814e+10  Americas             South America
## 2398      6.34   12762439           NA      Asia              Central Asia
## 2399      6.13      90824           NA   Oceania                 Melanesia
## 2400      5.05   12286434 6.918939e+10  Americas             South America
## 2401      7.75    1180273           NA      Asia              Western Asia
## 2402      6.35   45549487           NA      Asia        South-Eastern Asia
## 2403      7.67    6370599           NA      Asia              Western Asia
## 2404      7.45    4484141 2.601738e+09    Africa            Eastern Africa
## 2405      7.42    5573312 3.165014e+09    Africa            Eastern Africa
## 2406      4.68    2305999           NA    Europe           Southern Europe
## 2407      7.55   15804428 2.315516e+10    Africa           Northern Africa
## 2408      7.21    6750215           NA    Africa             Middle Africa
## 2409      3.12      67972           NA  Americas                 Caribbean
## 2410      3.20   25213388 1.750465e+11  Americas             South America
## 2411      2.94    2705584           NA      Asia              Western Asia
## 2412      2.61      60239           NA  Americas                 Caribbean
## 2413      2.49   13552190 1.759372e+11   Oceania Australia and New Zealand
## 2414      1.94    7598925 9.704713e+10    Europe            Western Europe
## 2415      4.22    5496061           NA      Asia              Western Asia
## 2416      3.41     181489 3.027450e+09  Americas                 Caribbean
## 2417      5.90     239860           NA      Asia              Western Asia
## 2418      6.90   68658472 1.586025e+10      Asia             Southern Asia
## 2419      2.65     242980 1.580313e+09  Americas                 Caribbean
## 2420      2.22    9245514           NA    Europe            Eastern Europe
## 2421      1.98    9734412 1.277661e+11    Europe            Western Europe
## 2422      6.29     129294 1.727789e+08  Americas           Central America
## 2423      6.86    3110074 9.042942e+08    Africa            Western Africa
## 2424      6.69     324465           NA      Asia             Southern Asia
## 2425      6.42    4798510 4.688839e+09  Americas             South America
## 2426      2.58    3885229           NA    Europe           Southern Europe
## 2427      6.55     765177 5.474659e+08    Africa           Southern Africa
## 2428      4.68  103320787 2.716223e+11  Americas             South America
## 2429      5.69     148067           NA      Asia        South-Eastern Asia
## 2430      2.17    8644419           NA    Europe            Eastern Europe
## 2431      6.74    5930487 8.287497e+08    Africa            Western Africa
## 2432      7.37    3582952 5.386804e+08    Africa            Eastern Africa
## 2433      5.99    7478147           NA      Asia        South-Eastern Asia
## 2434      6.32    7327874 3.774681e+09    Africa             Middle Africa
## 2435      1.88   22488744 3.251973e+11  Americas          Northern America
## 2436      6.86     273211           NA    Africa            Western Africa
## 2437      5.95    1937383 6.673069e+08    Africa             Middle Africa
## 2438      6.69    3908729 7.513377e+08    Africa             Middle Africa
## 2439      3.50   10087377 2.167022e+10  Americas             South America
## 2440      4.51  869474823 1.199263e+11      Asia              Eastern Asia
## 2441      4.96   23674505 3.865292e+10  Americas             South America
## 2442      7.06     242875           NA    Africa            Eastern Africa
## 2443      6.30   21690604 7.724118e+09    Africa             Middle Africa
## 2444      6.31    1464052 1.190256e+09    Africa             Middle Africa
## 2445      4.28    1995744 5.371190e+09  Americas           Central America
## 2446      7.94    6021405 5.583931e+09    Africa            Western Africa
## 2447      1.97    4469035           NA    Europe           Southern Europe
## 2448      3.40    9176051 1.821225e+10  Americas                 Caribbean
## 2449      2.44     635109           NA      Asia              Western Asia
## 2450      2.21    9936604           NA    Europe            Eastern Europe
## 2451      1.92    5015766 8.995607e+10    Europe           Northern Europe
## 2452      6.83     190536           NA    Africa            Eastern Africa
## 2453      5.58    4889437 7.314037e+09  Americas                 Caribbean
## 2454      5.74    6611916 7.171588e+09  Americas             South America
## 2455      5.69   37046807 2.160935e+10    Africa           Northern Africa
## 2456      5.91    3958616 8.038031e+09  Americas           Central America
## 2457      5.68     262399           NA    Africa             Middle Africa
## 2458      6.62    1958444           NA    Africa            Eastern Africa
## 2459      2.13    1398497           NA    Europe           Northern Europe
## 2460      7.09   31028728           NA    Africa            Eastern Africa
## 2461      4.18     554109 9.227934e+08   Oceania                 Melanesia
## 2462      1.50    4668813 5.981834e+10    Europe           Northern Europe
## 2463      2.24   52214014 7.058404e+11    Europe            Western Europe
## 2464      4.79     122355 1.099908e+09   Oceania                 Polynesia
## 2465      5.28     624625 2.330051e+09    Africa             Middle Africa
## 2466      6.23     489860 2.708256e+08    Africa            Western Africa
## 2467      2.56    4832510 5.301575e+09      Asia              Western Asia
## 2468      1.70   78732884 1.048007e+12    Europe            Western Europe
## 2469      6.89    9350111 2.691395e+09    Africa            Western Africa
## 2470      2.35    8897126 7.551344e+10    Europe           Southern Europe
## 2471      2.69      48740 5.498384e+08  Americas          Northern America
## 2472      4.51      93629           NA  Americas                 Caribbean
## 2473      6.20    5901980 8.248380e+09  Americas           Central America
## 2474      6.28    4319502           NA    Africa            Western Africa
## 2475      6.98     751512 1.075228e+08    Africa            Western Africa
## 2476      4.92     720919 5.506912e+08  Americas             South America
## 2477      5.62    4960655           NA  Americas                 Caribbean
## 2478      7.03    2928190 2.838036e+09  Americas           Central America
## 2479      3.13    4147596 3.372098e+10      Asia              Eastern Asia
## 2480      2.09   10454502 2.997790e+10    Europe            Eastern Europe
## 2481      2.80     212731 3.578758e+09    Europe           Northern Europe
## 2482      5.24  593451889 1.250511e+11      Asia             Southern Asia
## 2483      5.25  124242299 3.495067e+10      Asia        South-Eastern Asia
## 2484      6.24   30903565 5.715892e+10      Asia             Southern Asia
## 2485      7.15   10951169           NA      Asia              Western Asia
## 2486      3.74    3076273           NA    Europe           Northern Europe
## 2487      3.77    3137029 3.744554e+10      Asia              Western Asia
## 2488      2.32   54623207 5.784124e+11    Europe           Southern Europe
## 2489      4.90    1960043 7.166634e+09  Americas                 Caribbean
## 2490      2.09  108085729 2.130535e+12      Asia              Eastern Asia
## 2491      7.75    1873548           NA      Asia              Western Asia
## 2492      3.39   13751019           NA      Asia              Central Asia
## 2493      7.96   12529810 4.962996e+09    Africa            Eastern Africa
## 2494      5.10      53605 7.884259e+07   Oceania                Micronesia
## 2495      4.09   33435268 8.062795e+10      Asia              Eastern Asia
## 2496      6.81     926817           NA      Asia              Western Asia
## 2497      4.62    3169771           NA      Asia              Central Asia
## 2498      6.01    2916148           NA      Asia        South-Eastern Asia
## 2499      1.96    2424149 5.941816e+09    Europe           Northern Europe
## 2500      4.63    2480426           NA      Asia              Western Asia
## 2501      5.79    1098033 2.450227e+08    Africa           Southern Africa
## 2502      6.82    1538882 1.168304e+09    Africa            Western Africa
## 2503      7.96    2409101           NA    Africa           Northern Africa
## 2504      2.27    3237597           NA    Europe           Northern Europe
## 2505      1.70     348173 7.023100e+09    Europe            Western Europe
## 2506      1.68     252845           NA      Asia              Eastern Asia
## 2507      2.83    1768996           NA    Europe           Southern Europe
## 2508      7.30    7152391 2.804884e+09    Africa            Eastern Africa
## 2509      7.43    4996861 6.938757e+08    Africa            Eastern Africa
## 2510      4.47   11741849 1.606130e+10      Asia        South-Eastern Asia
## 2511      7.10     127717           NA      Asia             Southern Asia
## 2512      6.94    6256192 1.111148e+09    Africa            Western Africa
## 2513      2.00     305398 7.089156e+08    Europe           Southern Europe
## 2514      6.74    1253839 6.758353e+08    Africa            Western Africa
## 2515      3.44     865173           NA    Africa            Eastern Africa
## 2516      6.36   57283361 2.191876e+11  Americas           Central America
## 2517      6.84      62289           NA   Oceania                Micronesia
## 2518      2.52    3747925           NA    Europe            Eastern Europe
## 2519      7.41    1397305           NA      Asia              Eastern Asia
## 2520      2.59     537764           NA    Europe           Southern Europe
## 2521      6.38   17097003 1.355215e+10    Africa           Northern Africa
## 2522      6.57    9901052           NA    Africa            Eastern Africa
## 2523      6.61     855965           NA    Africa           Southern Africa
## 2524      5.93   12753028 1.755296e+09      Asia             Southern Asia
## 2525      1.90   13369326 1.882072e+11    Europe            Western Europe
## 2526      5.03     119154 1.198513e+09   Oceania                 Melanesia
## 2527      2.73    2989985           NA   Oceania Australia and New Zealand
## 2528      6.75    2629503 3.509112e+09  Americas           Central America
## 2529      7.53    4887484 1.117179e+09    Africa            Western Africa
## 2530      6.63   60285453 2.463214e+10    Africa            Western Africa
## 2531      2.23    3959705 6.705475e+10    Europe           Northern Europe
## 2532      7.50     806989 2.977122e+09      Asia              Western Asia
## 2533      6.61   63062204 1.874742e+10      Asia             Southern Asia
## 2534      4.81    1653257 4.990610e+09  Americas           Central America
## 2535      6.08    2652586 1.943538e+09   Oceania                 Melanesia
## 2536      5.35    2659084 2.318341e+09  Americas             South America
## 2537      5.95   14447649 3.091028e+10  Americas             South America
## 2538      5.93   39026082 3.522773e+10      Asia        South-Eastern Asia
## 2539      2.24   33597810           NA    Europe            Eastern Europe
## 2540      2.83    8923928 5.125622e+10    Europe           Southern Europe
## 2541      2.96    2833147 2.302816e+10  Americas                 Caribbean
## 2542      6.70     142111           NA      Asia              Western Asia
## 2543      2.42   21233593           NA    Europe            Eastern Europe
## 2544      1.96  132254362           NA    Europe            Eastern Europe
## 2545      8.31    4102336 8.501277e+08    Africa            Eastern Africa
## 2546      5.69     107461           NA  Americas                 Caribbean
## 2547      5.42      93516 1.440487e+08  Americas                 Caribbean
## 2548      6.95     148889           NA   Oceania                 Polynesia
## 2549      7.31    6697486 8.200743e+10      Asia              Western Asia
## 2550      7.43    4625377 2.272971e+09    Africa            Western Africa
## 2551      2.36    8337076           NA    Europe           Southern Europe
## 2552      5.28      56605 1.905722e+08    Africa            Eastern Africa
## 2553      6.85    2656380 7.897450e+08    Africa            Western Africa
## 2554      2.65    2191924 1.356987e+10      Asia        South-Eastern Asia
## 2555      2.50    4651493           NA    Europe            Eastern Europe
## 2556      2.23    1709974           NA    Europe           Southern Europe
## 2557      7.22     179354           NA   Oceania                 Melanesia
## 2558      5.42   24384538 7.599783e+10    Africa           Southern Africa
## 2559      2.84   35104633 2.817764e+11    Europe           Southern Europe
## 2560      3.97   13253063 4.574425e+09      Asia             Southern Asia
## 2561      6.92   11283574 3.811286e+09    Africa           Northern Africa
## 2562      5.15     368342           NA  Americas             South America
## 2563      6.86     486656 3.360738e+08    Africa           Southern Africa
## 2564      1.87    8146472 1.430760e+11    Europe           Northern Europe
## 2565      1.83    6311468           NA    Europe            Western Europe
## 2566      7.54    7066474 4.623409e+09      Asia              Western Asia
## 2567      6.71    3212446           NA      Asia              Central Asia
## 2568      6.76   14984973           NA    Africa            Eastern Africa
## 2569      4.95   40164969 2.315710e+10      Asia        South-Eastern Asia
## 2570      5.30     652017           NA      Asia        South-Eastern Asia
## 2571      7.22    2303345 6.916120e+08    Africa            Western Africa
## 2572      5.51      86985           NA   Oceania                 Polynesia
## 2573      3.39     982594 4.867599e+09  Americas                 Caribbean
## 2574      6.05    5405354 6.063491e+09    Africa           Northern Africa
## 2575      5.26   37366922 8.808415e+10      Asia              Western Asia
## 2576      6.07    2385039           NA      Asia              Central Asia
## 2577      7.10   10256342           NA    Africa            Eastern Africa
## 2578      2.06   48127170           NA    Europe            Eastern Europe
## 2579      6.28     382823           NA      Asia              Western Asia
## 2580      1.98   56039166 7.901366e+11    Europe           Northern Europe
## 2581      1.87  215092900 4.321881e+12  Americas          Northern America
## 2582      2.99    2822084 1.201110e+10  Americas             South America
## 2583      6.24   13170848           NA      Asia              Central Asia
## 2584      6.07      93761           NA   Oceania                 Melanesia
## 2585      4.91   12636971 7.410873e+10  Americas             South America
## 2586      7.70    1227160           NA      Asia              Western Asia
## 2587      6.25   46604726           NA      Asia        South-Eastern Asia
## 2588      7.78    6487853           NA      Asia              Western Asia
## 2589      7.45    4644329 2.576708e+09    Africa            Eastern Africa
## 2590      7.42    5768382 3.247454e+09    Africa            Eastern Africa
## 2591      4.54    2358467           NA    Europe           Southern Europe
## 2592      7.49   16247113 2.489062e+10    Africa           Northern Africa
## 2593      7.19    6923749           NA    Africa             Middle Africa
## 2594      2.91      68655           NA  Americas                 Caribbean
## 2595      3.26   25644505 1.847332e+11  Americas             South America
## 2596      2.85    2766495           NA      Asia              Western Asia
## 2597      2.55      60525           NA  Americas                 Caribbean
## 2598      2.32   13725400 1.830904e+11   Oceania Australia and New Zealand
## 2599      1.91    7617432 1.008729e+11    Europe            Western Europe
## 2600      4.08    5596160           NA      Asia              Western Asia
## 2601      3.33     185097 2.520224e+09  Americas                 Caribbean
## 2602      5.72     252139           NA      Asia              Western Asia
## 2603      6.87   69837960 1.738156e+10      Asia             Southern Asia
## 2604      2.51     244539 1.506815e+09  Americas                 Caribbean
## 2605      2.19    9306472           NA    Europe            Eastern Europe
## 2606      1.91    9751592 1.335990e+11    Europe            Western Europe
## 2607      6.29     131306 1.962077e+08  Americas           Central America
## 2608      6.90    3184547 9.344915e+08    Africa            Western Africa
## 2609      6.69     336677           NA      Asia             Southern Asia
## 2610      6.31    4902173 4.826670e+09  Americas             South America
## 2611      2.49    3930283           NA    Europe           Southern Europe
## 2612      6.51     792513 5.956308e+08    Africa           Southern Africa
## 2613      4.59  105846274 2.961827e+11  Americas             South America
## 2614      5.56     154395 3.547350e+09      Asia        South-Eastern Asia
## 2615      2.18    8688112           NA    Europe            Eastern Europe
## 2616      6.80    6040044 8.974234e+08    Africa            Western Africa
## 2617      7.40    3623853 5.347650e+08    Africa            Eastern Africa
## 2618      5.80    7561583           NA      Asia        South-Eastern Asia
## 2619      6.36    7529704 4.179865e+09    Africa             Middle Africa
## 2620      1.83   22823272 3.372003e+11  Americas          Northern America
## 2621      6.82     272509           NA    Africa            Western Africa
## 2622      5.95    1975968 7.096085e+08    Africa             Middle Africa
## 2623      6.74    4000511 7.886180e+08    Africa             Middle Africa
## 2624      3.33   10255074 2.221064e+10  Americas             South America
## 2625      4.15  888132761 1.226846e+11      Asia              Eastern Asia
## 2626      4.78   24208022 4.087257e+10  Americas             South America
## 2627      7.05     248921           NA    Africa            Eastern Africa
## 2628      6.33   22282079 7.965929e+09    Africa             Middle Africa
## 2629      6.32    1509880 1.284114e+09    Africa             Middle Africa
## 2630      4.11    2045580 5.669017e+09  Americas           Central America
## 2631      7.93    6307936 5.825568e+09    Africa            Western Africa
## 2632      1.98    4484521           NA    Europe           Southern Europe
## 2633      3.13    9315371 1.839155e+10  Americas                 Caribbean
## 2634      2.39     642335           NA      Asia              Western Asia
## 2635      2.26    9996356           NA    Europe            Eastern Europe
## 2636      1.90    5039920 8.922207e+10    Europe           Northern Europe
## 2637      6.82     205157           NA    Africa            Eastern Africa
## 2638      5.38    5019471 7.753019e+09  Americas                 Caribbean
## 2639      5.59    6798205 7.770888e+09  Americas             South America
## 2640      5.63   37815578 2.214645e+10    Africa           Northern Africa
## 2641      5.82    4053958 8.466940e+09  Americas           Central America
## 2642      5.68     249587           NA    Africa             Middle Africa
## 2643      6.62    2013382           NA    Africa            Eastern Africa
## 2644      2.13    1410492           NA    Europe           Northern Europe
## 2645      7.12   31855294           NA    Africa            Eastern Africa
## 2646      4.11     565386 9.467967e+08   Oceania                 Melanesia
## 2647      1.62    4691818 6.175438e+10    Europe           Northern Europe
## 2648      2.14   52647616 7.389499e+11    Europe            Western Europe
## 2649      4.67     126483 1.297903e+09   Oceania                 Polynesia
## 2650      5.34     636702 3.250120e+09    Africa             Middle Africa
## 2651      6.26     505512 2.867469e+08    Africa            Western Africa
## 2652      2.54    4871634 5.768553e+09      Asia              Western Asia
## 2653      1.62   78713928 1.057335e+12    Europe            Western Europe
## 2654      6.86    9604280 2.875823e+09    Africa            Western Africa
## 2655      2.35    8952862 7.065170e+10    Europe           Southern Europe
## 2656      2.30      49231 5.812135e+08  Americas          Northern America
## 2657      4.48      93151           NA  Americas                 Caribbean
## 2658      6.20    6069077 8.774217e+09  Americas           Central America
## 2659      6.32    4340748           NA    Africa            Western Africa
## 2660      6.99     764974 1.124251e+08    Africa            Western Africa
## 2661      4.85     730227 5.931101e+08  Americas             South America
## 2662      5.62    5047948           NA  Americas                 Caribbean
## 2663      6.94    3015606 2.803195e+09  Americas           Central America
## 2664      2.98    4243512 3.445173e+10      Asia              Eastern Asia
## 2665      2.11   10495442 3.174659e+10    Europe            Eastern Europe
## 2666      2.73     215465 3.782972e+09    Europe           Northern Europe
## 2667      5.16  607446519 1.265333e+11      Asia             Southern Asia
## 2668      5.15  127465232 3.783651e+10      Asia        South-Eastern Asia
## 2669      6.21   31784896 6.252308e+10      Asia             Southern Asia
## 2670      7.07   11312304           NA      Asia              Western Asia
## 2671      3.67    3128000           NA    Europe           Northern Europe
## 2672      3.72    3239561 4.000691e+10      Asia              Western Asia
## 2673      2.24   54961926 6.102259e+11    Europe           Southern Europe
## 2674      4.69    1989880 6.863539e+09  Americas                 Caribbean
## 2675      2.05  109495053 2.104431e+12      Asia              Eastern Asia
## 2676      7.68    1929939           NA      Asia              Western Asia
## 2677      3.32   13950987           NA      Asia              Central Asia
## 2678      7.91   12997447 5.164772e+09    Africa            Eastern Africa
## 2679      4.96      54382 1.145605e+08   Oceania                Micronesia
## 2680      3.87   34091816 8.641875e+10      Asia              Eastern Asia
## 2681      6.62     988267           NA      Asia              Western Asia
## 2682      4.49    3234611           NA      Asia              Central Asia
## 2683      6.03    2987544           NA      Asia        South-Eastern Asia
## 2684      1.96    2441588 6.230941e+09    Europe           Northern Europe
## 2685      4.53    2535503           NA      Asia              Western Asia
## 2686      5.78    1122484 2.719264e+08    Africa           Southern Africa
## 2687      6.85    1582584 1.223836e+09    Africa            Western Africa
## 2688      7.98    2514373           NA    Africa           Northern Africa
## 2689      2.24    3269546           NA    Europe           Northern Europe
## 2690      1.63     351190 7.318946e+09    Europe            Western Europe
## 2691      1.57     250550           NA      Asia              Eastern Asia
## 2692      2.79    1784395           NA    Europe           Southern Europe
## 2693      7.27    7360271 2.861175e+09    Africa            Eastern Africa
## 2694      7.48    5141138 7.436680e+08    Africa            Eastern Africa
## 2695      4.34   12025930 1.739594e+10      Asia        South-Eastern Asia
## 2696      7.04     132122           NA      Asia             Southern Asia
## 2697      6.95    6368351 1.094161e+09    Africa            Western Africa
## 2698      2.03     306291 7.800652e+08    Europe           Southern Europe
## 2699      6.71    1290755 7.580346e+08    Africa            Western Africa
## 2700      3.34     878355           NA    Africa            Eastern Africa
## 2701      6.16   59090495 2.318496e+11  Americas           Central America
## 2702      6.77      62477           NA   Oceania                Micronesia
## 2703      2.50    3795653           NA    Europe            Eastern Europe
## 2704      7.29    1438423           NA      Asia              Eastern Asia
## 2705      2.55     546569           NA    Europe           Southern Europe
## 2706      6.27   17466606 1.431053e+10    Africa           Northern Africa
## 2707      6.56   10141147           NA    Africa            Eastern Africa
## 2708      6.64     881530           NA    Africa           Southern Africa
## 2709      5.91   13028248 1.866469e+09      Asia             Southern Asia
## 2710      1.77   13493460 1.962171e+11    Europe            Western Europe
## 2711      4.83     123976 1.350737e+09   Oceania                 Melanesia
## 2712      2.61    3042573           NA   Oceania Australia and New Zealand
## 2713      6.68    2711847 4.007140e+09  Americas           Central America
## 2714      7.55    5026744 1.215214e+09    Africa            Western Africa
## 2715      6.67   61857023 2.738126e+10    Africa            Western Africa
## 2716      2.13    3984291 6.961525e+10    Europe           Northern Europe
## 2717      7.62     841947 3.319456e+09      Asia              Western Asia
## 2718      6.61   64873705 1.941111e+10      Asia             Southern Asia
## 2719      4.68    1699114 5.112457e+09  Americas           Central America
## 2720      6.04    2730859 1.994275e+09   Oceania                 Melanesia
## 2721      5.27    2723523 2.509330e+09  Americas             South America
## 2722      5.83   14832839 3.376951e+10  Americas             South America
## 2723      5.82   40149959 3.648118e+10      Asia        South-Eastern Asia
## 2724      2.24   33877397           NA    Europe            Eastern Europe
## 2725      2.77    9054924 5.184201e+10    Europe           Southern Europe
## 2726      2.91    2881783 2.304118e+10  Americas                 Caribbean
## 2727      6.60     153593           NA      Asia              Western Asia
## 2728      2.71   21451256           NA    Europe            Eastern Europe
## 2729      2.00  133012558           NA    Europe            Eastern Europe
## 2730      8.34    4226836 8.621130e+08    Africa            Eastern Africa
## 2731      5.57     108534           NA  Americas                 Caribbean
## 2732      5.20      94572 1.313427e+08  Americas                 Caribbean
## 2733      6.86     150219           NA   Oceania                 Polynesia
## 2734      7.31    7045477 1.045534e+11      Asia              Western Asia
## 2735      7.45    4764623 2.368453e+09    Africa            Western Africa
## 2736      2.36    8416250           NA    Europe           Southern Europe
## 2737      5.07      58102 1.930551e+08    Africa            Eastern Africa
## 2738      6.89    2709797 8.173847e+08    Africa            Western Africa
## 2739      2.46    2228896 1.444952e+10      Asia        South-Eastern Asia
## 2740      2.50    4697153           NA    Europe            Eastern Europe
## 2741      2.22    1725967           NA    Europe           Southern Europe
## 2742      7.25     186338           NA   Oceania                 Melanesia
## 2743      5.34   25040940 8.064211e+10    Africa           Southern Africa
## 2744      2.80   35509391 2.976088e+11    Europe           Southern Europe
## 2745      3.87   13502870 4.750350e+09      Asia             Southern Asia
## 2746      6.93   11668674 4.247499e+09    Africa           Northern Africa
## 2747      4.95     365104           NA  Americas             South America
## 2748      6.84     501596 3.553761e+08    Africa           Southern Africa
## 2749      1.88    8169141 1.476518e+11    Europe           Northern Europe
## 2750      1.74    6341051           NA    Europe            Western Europe
## 2751      7.51    7311685 5.738909e+09      Asia              Western Asia
## 2752      6.57    3313144           NA      Asia              Central Asia
## 2753      6.76   15477155           NA    Africa            Eastern Africa
## 2754      4.72   41259539 2.419136e+10      Asia        South-Eastern Asia
## 2755      5.04     661528           NA      Asia        South-Eastern Asia
## 2756      7.25    2356623 7.250366e+08    Africa            Western Africa
## 2757      5.45      87609           NA   Oceania                 Polynesia
## 2758      3.35     997052 5.052938e+09  Americas                 Caribbean
## 2759      5.95    5526768 6.553105e+09    Africa           Northern Africa
## 2760      5.14   38272701 9.301199e+10      Asia              Western Asia
## 2761      5.94    2452528           NA      Asia              Central Asia
## 2762      7.10   10533627           NA    Africa            Eastern Africa
## 2763      2.05   48455120           NA    Europe            Eastern Europe
## 2764      6.15     451948           NA      Asia              Western Asia
## 2765      1.89   56122405 7.793909e+11    Europe           Northern Europe
## 2766      1.83  217001865 4.299437e+12  Americas          Northern America
## 2767      2.99    2824069 1.235886e+10  Americas             South America
## 2768      6.12   13578783           NA      Asia              Central Asia
## 2769      6.00      96793           NA   Oceania                 Melanesia
## 2770      4.78   12994025 7.564228e+10  Americas             South America
## 2771      7.65    1276368           NA      Asia              Western Asia
## 2772      6.13   47661770           NA      Asia        South-Eastern Asia
## 2773      7.92    6626208           NA      Asia              Western Asia
## 2774      7.44    4810810 2.742342e+09    Africa            Eastern Africa
## 2775      7.41    5967861 3.462602e+09    Africa            Eastern Africa
## 2776      4.39    2411229           NA    Europe           Southern Europe
## 2777      7.42   16709098 2.614644e+10    Africa           Northern Africa
## 2778      7.19    7107334           NA    Africa             Middle Africa
## 2779      2.70      69253           NA  Americas                 Caribbean
## 2780      3.32   26066975 1.846807e+11  Americas             South America
## 2781      2.75    2825650           NA      Asia              Western Asia
## 2782      2.51      60655           NA  Americas                 Caribbean
## 2783      2.15   13892674 1.853697e+11   Oceania Australia and New Zealand
## 2784      1.83    7628138 1.005060e+11    Europe            Western Europe
## 2785      3.95    5693796           NA      Asia              Western Asia
## 2786      3.23     188882 2.147152e+09  Americas                 Caribbean
## 2787      5.56     266686           NA      Asia              Western Asia
## 2788      6.82   71247153 1.667097e+10      Asia             Southern Asia
## 2789      2.39     246033 1.567165e+09  Americas                 Caribbean
## 2790      2.16    9365830           NA    Europe            Eastern Europe
## 2791      1.84    9769006 1.309725e+11    Europe            Western Europe
## 2792      6.28     133261 2.032571e+08  Americas           Central America
## 2793      6.93    3262959 8.887449e+08    Africa            Western Africa
## 2794      6.69     349146           NA      Asia             Southern Asia
## 2795      6.18    5009259 5.179549e+09  Americas             South America
## 2796      2.41    3971608           NA    Europe           Southern Europe
## 2797      6.48     822029 6.459393e+08    Africa           Southern Africa
## 2798      4.50  108431284 3.116111e+11  Americas             South America
## 2799      5.37     160799 3.559960e+09      Asia        South-Eastern Asia
## 2800      2.19    8727332           NA    Europe            Eastern Europe
## 2801      6.86    6154548 9.243316e+08    Africa            Western Africa
## 2802      7.42    3676991 5.384973e+08    Africa            Eastern Africa
## 2803      5.62    7551988           NA      Asia        South-Eastern Asia
## 2804      6.39    7740196 4.649894e+09    Africa             Middle Africa
## 2805      1.83   23140609 3.433473e+11  Americas          Northern America
## 2806      6.77     272575           NA    Africa            Western Africa
## 2807      5.95    2017379 7.124824e+08    Africa             Middle Africa
## 2808      6.78    4088858 8.596746e+08    Africa             Middle Africa
## 2809      3.16   10420590 1.968689e+10  Americas             South America
## 2810      3.58  905580445 1.333582e+11      Asia              Eastern Asia
## 2811      4.63   24756969 4.179141e+10  Americas             South America
## 2812      7.05     256309           NA    Africa            Eastern Africa
## 2813      6.37   22902275 7.569095e+09    Africa             Middle Africa
## 2814      6.33    1556406 1.383396e+09    Africa             Middle Africa
## 2815      3.97    2097410 5.788070e+09  Americas           Central America
## 2816      7.92    6606395 6.306346e+09    Africa            Western Africa
## 2817      1.99    4500868           NA    Europe           Southern Europe
## 2818      2.84    9438445 2.013441e+10  Americas                 Caribbean
## 2819      2.35     649755 1.930010e+09      Asia              Western Asia
## 2820      2.29   10058165           NA    Europe            Eastern Europe
## 2821      1.92    5061289 8.813227e+10    Europe           Northern Europe
## 2822      6.78     224182           NA    Africa            Eastern Africa
## 2823      5.19    5149934 8.155652e+09  Americas                 Caribbean
## 2824      5.45    6987393 8.418212e+09  Americas             South America
## 2825      5.59   38624410 2.412616e+10    Africa           Northern Africa
## 2826      5.72    4147525 8.714474e+09  Americas           Central America
## 2827      5.67     238240           NA    Africa             Middle Africa
## 2828      6.61    2070145           NA    Africa            Eastern Africa
## 2829      2.11    1422070           NA    Europe           Northern Europe
## 2830      7.14   32568539           NA    Africa            Eastern Africa
## 2831      4.05     576592 9.518167e+08   Oceania                 Melanesia
## 2832      1.69    4711459 6.286899e+10    Europe           Northern Europe
## 2833      2.06   53010727 7.306415e+11    Europe            Western Europe
## 2834      4.55     130619 1.234271e+09   Oceania                 Polynesia
## 2835      5.41     649719 3.873822e+09    Africa             Middle Africa
## 2836      6.29     521070 3.222847e+08    Africa            Western Africa
## 2837      2.50    4908265 6.194327e+09      Asia              Western Asia
## 2838      1.56   78667327 1.048170e+12    Europe            Western Europe
## 2839      6.82    9831409 2.518311e+09    Africa            Western Africa
## 2840      2.34    9030080 7.514996e+10    Europe           Southern Europe
## 2841      2.35      49582 5.849696e+08  Americas          Northern America
## 2842      4.44      92453           NA  Americas                 Caribbean
## 2843      6.20    6237963 8.945313e+09  Americas           Central America
## 2844      6.35    4359735           NA    Africa            Western Africa
## 2845      6.87     778482 1.212455e+08    Africa            Western Africa
## 2846      4.76     740167 6.434237e+08  Americas             South America
## 2847      5.64    5140357           NA  Americas                 Caribbean
## 2848      6.84    3107735 2.862922e+09  Americas           Central America
## 2849      2.81    4355301 3.463497e+10      Asia              Eastern Asia
## 2850      2.12   10541344 3.371488e+10    Europe            Eastern Europe
## 2851      2.65     217958 3.807416e+09    Europe           Northern Europe
## 2852      5.08  621703641 1.381110e+11      Asia             Southern Asia
## 2853      5.04  130724118 4.017610e+10      Asia        South-Eastern Asia
## 2854      6.21   32730555 6.612053e+10      Asia             Southern Asia
## 2855      6.99   11684585           NA      Asia              Western Asia
## 2856      3.57    3180805           NA    Europe           Northern Europe
## 2857      3.66    3336760 4.133448e+10      Asia              Western Asia
## 2858      2.17   55268549 5.974712e+11    Europe           Southern Europe
## 2859      4.48    2017830 6.845962e+09  Americas                 Caribbean
## 2860      2.00  110804519 2.169491e+12      Asia              Eastern Asia
## 2861      7.60    1985121 2.024892e+09      Asia              Western Asia
## 2862      3.25   14136006           NA      Asia              Central Asia
## 2863      7.84   13486241 5.210336e+09    Africa            Eastern Africa
## 2864      4.90      55169 1.206831e+08   Oceania                Micronesia
## 2865      3.62   34713078 9.155861e+10      Asia              Eastern Asia
## 2866      6.43    1051187           NA      Asia              Western Asia
## 2867      4.37    3299001           NA      Asia              Central Asia
## 2868      6.06    3047864           NA      Asia        South-Eastern Asia
## 2869      1.94    2457027 6.659330e+09    Europe           Northern Europe
## 2870      4.44    2575693           NA      Asia              Western Asia
## 2871      5.76    1149090 2.351796e+08    Africa           Southern Africa
## 2872      6.88    1628656 1.181386e+09    Africa            Western Africa
## 2873      7.99    2621730           NA    Africa           Northern Africa
## 2874      2.21    3299819           NA    Europe           Northern Europe
## 2875      1.57     353984 6.837991e+09    Europe            Western Europe
## 2876      1.48     248213           NA      Asia              Eastern Asia
## 2877      2.75    1803009           NA    Europe           Southern Europe
## 2878      7.22    7575757 2.897188e+09    Africa            Eastern Africa
## 2879      7.52    5292816 7.889337e+08    Africa            Eastern Africa
## 2880      4.21   12311782 1.753540e+10      Asia        South-Eastern Asia
## 2881      6.98     136434           NA      Asia             Southern Asia
## 2882      6.97    6482276 1.221358e+09    Africa            Western Africa
## 2883      2.06     307597 9.326466e+08    Europe           Southern Europe
## 2884      6.68    1328687 7.191142e+08    Africa            Western Africa
## 2885      3.26     892208           NA    Africa            Eastern Africa
## 2886      5.93   60872399 2.451682e+11  Americas           Central America
## 2887      6.68      63146           NA   Oceania                Micronesia
## 2888      2.48    3838911           NA    Europe            Eastern Europe
## 2889      7.14    1479650           NA      Asia              Eastern Asia
## 2890      2.50     554262           NA    Europe           Southern Europe
## 2891      6.17   17854614 1.539215e+10    Africa           Northern Africa
## 2892      6.55   10405000           NA    Africa            Eastern Africa
## 2893      6.65     905647           NA    Africa           Southern Africa
## 2894      5.89   13313487 1.893654e+09      Asia             Southern Asia
## 2895      1.66   13611064 1.964585e+11    Europe            Western Europe
## 2896      4.60     128216 1.438528e+09   Oceania                 Melanesia
## 2897      2.46    3082883           NA   Oceania Australia and New Zealand
## 2898      6.60    2796748 4.000999e+09  Americas           Central America
## 2899      7.58    5171029 1.181271e+09    Africa            Western Africa
## 2900      6.71   63565598 2.594983e+10    Africa            Western Africa
## 2901      1.98    4006221 7.311368e+10    Europe           Northern Europe
## 2902      7.75     882044 4.130515e+09      Asia              Western Asia
## 2903      6.61   66791496 2.022860e+10      Asia             Southern Asia
## 2904      4.54    1745207 5.193787e+09  Americas           Central America
## 2905      6.00    2809692 1.976728e+09   Oceania                 Melanesia
## 2906      5.22    2790964 2.667923e+09  Americas             South America
## 2907      5.70   15229951 3.491820e+10  Americas             South America
## 2908      5.72   41295129 3.851127e+10      Asia        South-Eastern Asia
## 2909      2.25   34168112           NA    Europe            Eastern Europe
## 2910      2.71    9185876 4.958811e+10    Europe           Southern Europe
## 2911      2.86    2931932 2.245490e+10  Americas                 Caribbean
## 2912      6.47     164333           NA      Asia              Western Asia
## 2913      2.62   21665780           NA    Europe            Eastern Europe
## 2914      1.97  133788113           NA    Europe            Eastern Europe
## 2915      8.37    4359166 8.438895e+08    Africa            Eastern Africa
## 2916      5.46     109770           NA  Americas                 Caribbean
## 2917      4.97      95614 1.213493e+08  Americas                 Caribbean
## 2918      6.76     151383           NA   Oceania                 Polynesia
## 2919      7.31    7428705 1.100190e+11      Asia              Western Asia
## 2920      7.47    4900491 2.546932e+09    Africa            Western Africa
## 2921      2.36    8497168           NA    Europe           Southern Europe
## 2922      4.85      59589 1.991892e+08    Africa            Eastern Africa
## 2923      6.94    2765914 8.310287e+08    Africa            Western Africa
## 2924      2.27    2262393 1.511917e+10      Asia        South-Eastern Asia
## 2925      2.50    4744482           NA    Europe            Eastern Europe
## 2926      2.21    1742626           NA    Europe           Southern Europe
## 2927      7.24     193447           NA   Oceania                 Melanesia
## 2928      5.25   25698856 8.200930e+10    Africa           Southern Africa
## 2929      2.75   35909042 2.992225e+11    Europe           Southern Europe
## 2930      3.78   13755990 5.041367e+09      Asia             Southern Asia
## 2931      6.94   12075841 4.914928e+09    Africa           Northern Africa
## 2932      4.74     362651 9.075056e+08  Americas             South America
## 2933      6.82     517100 4.048034e+08    Africa           Southern Africa
## 2934      1.77    8192693 1.514212e+11    Europe           Northern Europe
## 2935      1.67    6356178           NA    Europe            Western Europe
## 2936      7.47    7564000 6.859409e+09      Asia              Western Asia
## 2937      6.40    3412819           NA      Asia              Central Asia
## 2938      6.75   15980265           NA    Africa            Eastern Africa
## 2939      4.49   42334954 2.539376e+10      Asia        South-Eastern Asia
## 2940      4.79     661634           NA      Asia        South-Eastern Asia
## 2941      7.28    2410446 7.427314e+08    Africa            Western Africa
## 2942      5.43      88347           NA   Oceania                 Polynesia
## 2943      3.31    1011487 5.127619e+09  Americas                 Caribbean
## 2944      5.87    5652478 7.022052e+09    Africa           Northern Africa
## 2945      5.01   39185637 9.968478e+10      Asia              Western Asia
## 2946      5.78    2520002           NA      Asia              Central Asia
## 2947      7.10   10827071           NA    Africa            Eastern Africa
## 2948      2.03   48758986           NA    Europe            Eastern Europe
## 2949      6.01     531265 2.989928e+10      Asia              Western Asia
## 2950      1.83   56179925 7.745069e+11    Europe           Northern Europe
## 2951      1.77  218963561 4.291009e+12  Americas          Northern America
## 2952      2.98    2830172 1.311237e+10  Americas             South America
## 2953      5.98   13980997           NA      Asia              Central Asia
## 2954      5.93      99879           NA   Oceania                 Melanesia
## 2955      4.67   13360988 7.783308e+10  Americas             South America
## 2956      7.61    1321677           NA      Asia              Western Asia
## 2957      5.97   48729397           NA      Asia        South-Eastern Asia
## 2958      8.09    6793979           NA      Asia              Western Asia
## 2959      7.44    4983017 2.680110e+09    Africa            Eastern Africa
## 2960      7.40    6170284 3.395732e+09    Africa            Eastern Africa
## 2961      4.24    2464338           NA    Europe           Southern Europe
## 2962      7.34   17190236 2.833927e+10    Africa           Northern Africa
## 2963      7.19    7299508           NA    Africa             Middle Africa
## 2964      2.51      69782           NA  Americas                 Caribbean
## 2965      3.37   26477153 1.809534e+11  Americas             South America
## 2966      2.65    2882831           NA      Asia              Western Asia
## 2967      2.47      60589           NA  Americas                 Caribbean
## 2968      2.06   14054956 1.902511e+11   Oceania Australia and New Zealand
## 2969      1.69    7630536 1.051076e+11    Europe            Western Europe
## 2970      3.81    5789050           NA      Asia              Western Asia
## 2971      3.14     192905 2.258486e+09  Americas                 Caribbean
## 2972      5.41     283843           NA      Asia              Western Asia
## 2973      6.76   72930206 1.761477e+10      Asia             Southern Asia
## 2974      2.29     247444 1.565872e+09  Americas                 Caribbean
## 2975      2.13    9423421           NA    Europe            Eastern Europe
## 2976      1.78    9787576 1.383761e+11    Europe            Western Europe
## 2977      6.25     135145 2.031880e+08  Americas           Central America
## 2978      6.96    3345501 8.966045e+08    Africa            Western Africa
## 2979      6.69     361862           NA      Asia             Southern Asia
## 2980      6.04    5119833 5.418563e+09  Americas             South America
## 2981      2.34    4008411           NA    Europe           Southern Europe
## 2982      6.44     853860 7.147149e+08    Africa           Southern Africa
## 2983      4.42  111076063 3.421191e+11  Americas             South America
## 2984      5.13     167283 4.277484e+09      Asia        South-Eastern Asia
## 2985      2.19    8761231           NA    Europe            Eastern Europe
## 2986      6.92    6274037 1.003222e+09    Africa            Western Africa
## 2987      7.44    3744696 5.812683e+08    Africa            Eastern Africa
## 2988      5.50    7431505           NA      Asia        South-Eastern Asia
## 2989      6.43    7959500 4.394376e+09    Africa             Middle Africa
## 2990      1.78   23439940 3.611990e+11  Americas          Northern America
## 2991      6.71     273625           NA    Africa            Western Africa
## 2992      5.95    2061552 7.511876e+08    Africa             Middle Africa
## 2993      6.82    4173070 8.852995e+08    Africa             Middle Africa
## 2994      3.01   10584237 2.035751e+10  Americas             South America
## 2995      3.25  921688199 1.312245e+11      Asia              Eastern Asia
## 2996      4.50   25323412 4.380458e+10  Americas             South America
## 2997      7.07     265234           NA    Africa            Eastern Africa
## 2998      6.40   23556784 7.167252e+09    Africa             Middle Africa
## 2999      6.32    1603446 1.396072e+09    Africa             Middle Africa
## 3000      3.86    2151492 6.107431e+09  Americas           Central America
## 3001      7.88    6916302 7.120899e+09    Africa            Western Africa
## 3002      2.00    4518103           NA    Europe           Southern Europe
## 3003      2.57    9544268 2.122729e+10  Americas                 Caribbean
## 3004      2.32     657526 2.321152e+09      Asia              Western Asia
## 3005      2.31   10122450           NA    Europe            Eastern Europe
## 3006      1.75    5079962 9.350261e+10    Europe           Northern Europe
## 3007      6.73     248619           NA    Africa            Eastern Africa
## 3008      5.01    5280727 8.704375e+09  Americas                 Caribbean
## 3009      5.30    7179399 9.061534e+09  Americas             South America
## 3010      5.55   39478585 2.765515e+10    Africa           Northern Africa
## 3011      5.62    4239205 9.154490e+09  Americas           Central America
## 3012      5.68     228491           NA    Africa             Middle Africa
## 3013      6.62    2128597           NA    Africa            Eastern Africa
## 3014      2.10    1433207           NA    Europe           Northern Europe
## 3015      7.17   33144537           NA    Africa            Eastern Africa
## 3016      4.02     587523 9.778599e+08   Oceania                 Melanesia
## 3017      1.72    4726803 6.308550e+10    Europe           Northern Europe
## 3018      1.98   53293030 7.626870e+11    Europe            Western Europe
## 3019      4.42     134743 1.335526e+09   Oceania                 Polynesia
## 3020      5.48     663774 5.253884e+09    Africa             Middle Africa
## 3021      6.32     536409 3.459766e+08    Africa            Western Africa
## 3022      2.46    4942018 6.572030e+09      Asia              Western Asia
## 3023      1.53   78604473 1.100047e+12    Europe            Western Europe
## 3024      6.77   10023471 2.429410e+09    Africa            Western Africa
## 3025      2.34    9132531 8.029916e+10    Europe           Southern Europe
## 3026      2.26      49784 6.198291e+08  Americas          Northern America
## 3027      4.39      91435           NA  Americas                 Caribbean
## 3028      6.20    6408029 9.606127e+09  Americas           Central America
## 3029      6.39    4376768           NA    Africa            Western Africa
## 3030      6.66     791959 1.272392e+08    Africa            Western Africa
## 3031      4.62     751008 6.533126e+08  Americas             South America
## 3032      5.70    5238242           NA  Americas                 Caribbean
## 3033      6.75    3204883 3.163549e+09  Americas           Central America
## 3034      2.63    4485813 4.033686e+10      Asia              Eastern Asia
## 3035      2.12   10593989 3.492862e+10    Europe            Eastern Europe
## 3036      2.57     220162 4.034314e+09    Europe           Northern Europe
## 3037      5.00  636182810 1.404079e+11      Asia             Southern Asia
## 3038      4.93  134010695 4.258191e+10      Asia        South-Eastern Asia
## 3039      6.24   33739231 7.784430e+10      Asia             Southern Asia
## 3040      6.92   12068195           NA      Asia              Western Asia
## 3041      3.46    3234153           NA    Europe           Northern Europe
## 3042      3.59    3427662 4.187838e+10      Asia              Western Asia
## 3043      2.08   55539118 6.400433e+11    Europe           Southern Europe
## 3044      4.29    2043097 6.387676e+09  Americas                 Caribbean
## 3045      1.94  111992858 2.255728e+12      Asia              Eastern Asia
## 3046      7.52    2039114 2.517134e+09      Asia              Western Asia
## 3047      3.18   14304946           NA      Asia              Central Asia
## 3048      7.77   13995974 5.322565e+09    Africa            Eastern Africa
## 3049      4.93      55980 8.837834e+07   Oceania                Micronesia
## 3050      3.36   35290737 1.012386e+11      Asia              Eastern Asia
## 3051      6.23    1115463           NA      Asia              Western Asia
## 3052      4.25    3362961           NA      Asia              Central Asia
## 3053      6.10    3094940           NA      Asia        South-Eastern Asia
## 3054      1.92    2470263 7.033603e+09    Europe           Northern Europe
## 3055      4.36    2598362           NA      Asia              Western Asia
## 3056      5.74    1177975 2.611649e+08    Africa           Southern Africa
## 3057      6.91    1676016 1.244126e+09    Africa            Western Africa
## 3058      7.99    2730373           NA    Africa           Northern Africa
## 3059      2.17    3328245           NA    Europe           Northern Europe
## 3060      1.53     356563 7.011288e+09    Europe            Western Europe
## 3061      1.44     245915           NA      Asia              Eastern Asia
## 3062      2.70    1825554           NA    Europe           Southern Europe
## 3063      7.13    7799642 2.808278e+09    Africa            Eastern Africa
## 3064      7.56    5454839 8.283625e+08    Africa            Eastern Africa
## 3065      4.09   12599655 1.956316e+10      Asia        South-Eastern Asia
## 3066      6.94     140582           NA      Asia             Southern Asia
## 3067      6.98    6596817 1.387748e+09    Africa            Western Africa
## 3068      2.08     309328 1.091356e+09    Europe           Southern Europe
## 3069      6.64    1367640 7.805705e+08    Africa            Western Africa
## 3070      3.17     906926 1.475132e+09    Africa            Eastern Africa
## 3071      5.68   62620087 2.559984e+11  Americas           Central America
## 3072      6.59      64386           NA   Oceania                Micronesia
## 3073      2.47    3876947           NA    Europe            Eastern Europe
## 3074      6.97    1520865           NA      Asia              Eastern Asia
## 3075      2.45     560424           NA    Europe           Southern Europe
## 3076      6.07   18262366 1.705647e+10    Africa           Northern Africa
## 3077      6.54   10693688           NA    Africa            Eastern Africa
## 3078      6.65     928228           NA    Africa           Southern Africa
## 3079      5.87   13608670 1.976947e+09      Asia             Southern Asia
## 3080      1.63   13722272 2.058643e+11    Europe            Western Europe
## 3081      4.35     131758 1.471614e+09   Oceania                 Melanesia
## 3082      2.37    3108745           NA   Oceania Australia and New Zealand
## 3083      6.51    2884156 4.209429e+09  Americas           Central America
## 3084      7.60    5320869 1.189282e+09    Africa            Western Africa
## 3085      6.74   65426976 2.829631e+10    Africa            Western Africa
## 3086      1.86    4025297 7.734889e+10    Europe           Northern Europe
## 3087      7.89     927439 4.978928e+09      Asia              Western Asia
## 3088      6.61   68818471 2.127162e+10      Asia             Southern Asia
## 3089      4.40    1791459 5.279154e+09  Americas           Central America
## 3090      5.95    2888509 1.909747e+09   Oceania                 Melanesia
## 3091      5.20    2861582 2.855160e+09  Americas             South America
## 3092      5.57   15639898 3.560285e+10  Americas             South America
## 3093      5.61   42461189 4.190282e+10      Asia        South-Eastern Asia
## 3094      2.26   34468877           NA    Europe            Eastern Europe
## 3095      2.65    9314301 5.300980e+10    Europe           Southern Europe
## 3096      2.82    2983630 2.363925e+10  Americas                 Caribbean
## 3097      6.34     173759           NA      Asia              Western Asia
## 3098      2.57   21877548           NA    Europe            Eastern Europe
## 3099      1.95  134583945           NA    Europe            Eastern Europe
## 3100      8.40    4499720 1.008487e+09    Africa            Eastern Africa
## 3101      5.35     111211           NA  Americas                 Caribbean
## 3102      4.75      96639 1.339414e+08  Americas                 Caribbean
## 3103      6.66     152390           NA   Oceania                 Polynesia
## 3104      7.31    7845300 1.240121e+11      Asia              Western Asia
## 3105      7.47    5031849 2.774131e+09    Africa            Western Africa
## 3106      2.37    8579631           NA    Europe           Southern Europe
## 3107      4.62      61058 2.316125e+08    Africa            Eastern Africa
## 3108      6.98    2824827 8.272959e+08    Africa            Western Africa
## 3109      2.10    2291621 1.623816e+10      Asia        South-Eastern Asia
## 3110      2.48    4793633           NA    Europe            Eastern Europe
## 3111      2.20    1759725           NA    Europe           Southern Europe
## 3112      7.18     200642           NA   Oceania                 Melanesia
## 3113      5.16   26354140 8.385450e+10    Africa           Southern Africa
## 3114      2.68   36302392 3.091082e+11    Europe           Southern Europe
## 3115      3.71   14013610 5.209502e+09      Asia             Southern Asia
## 3116      6.93   12506035 5.734012e+09    Africa           Northern Africa
## 3117      4.53     361368 8.782110e+08  Americas             South America
## 3118      6.79     533264 3.962238e+08    Africa           Southern Africa
## 3119      1.68    8218630 1.530234e+11    Europe           Northern Europe
## 3120      1.61    6355245           NA    Europe            Western Europe
## 3121      7.42    7822610 7.611318e+09      Asia              Western Asia
## 3122      6.22    3511050           NA      Asia              Central Asia
## 3123      6.74   16493435           NA    Africa            Eastern Africa
## 3124      4.26   43386846 2.776219e+10      Asia        South-Eastern Asia
## 3125      4.61     650490           NA      Asia        South-Eastern Asia
## 3126      7.29    2464457 7.274941e+08    Africa            Western Africa
## 3127      5.44      89258           NA   Oceania                 Polynesia
## 3128      3.29    1025655 5.456050e+09  Americas                 Caribbean
## 3129      5.79    5781793 7.575168e+09    Africa           Northern Africa
## 3130      4.87   40100696 1.101130e+11      Asia              Western Asia
## 3131      5.61    2587417           NA      Asia              Central Asia
## 3132      7.10   11139772           NA    Africa            Eastern Africa
## 3133      2.01   49036202           NA    Europe            Eastern Europe
## 3134      5.87     622051 3.484069e+10      Asia              Western Asia
## 3135      1.78   56212943 7.949858e+11    Europe           Northern Europe
## 3136      1.74  220993166 4.523528e+12  Americas          Northern America
## 3137      2.95    2841436 1.362841e+10  Americas             South America
## 3138      5.83   14374729           NA      Asia              Central Asia
## 3139      5.86     103024           NA   Oceania                 Melanesia
## 3140      4.57   13739142 8.384782e+10  Americas             South America
## 3141      7.57    1361612           NA      Asia              Western Asia
## 3142      5.80   49808071           NA      Asia        South-Eastern Asia
## 3143      8.28    6994840           NA      Asia              Western Asia
## 3144      7.41    5160570 2.846839e+09    Africa            Eastern Africa
## 3145      7.37    6373956 3.411517e+09    Africa            Eastern Africa
## 3146      4.09    2517869           NA    Europe           Southern Europe
## 3147      7.24   17690184 2.982952e+10    Africa           Northern Africa
## 3148      7.19    7501320           NA    Africa             Middle Africa
## 3149      2.36      70223 2.682654e+08  Americas                 Caribbean
## 3150      3.39   26878567 1.935010e+11  Americas             South America
## 3151      2.56    2938181           NA      Asia              Western Asia
## 3152      2.45      60366           NA  Americas                 Caribbean
## 3153      2.01   14211657 1.968787e+11   Oceania Australia and New Zealand
## 3154      1.63    7625724 1.103720e+11    Europe            Western Europe
## 3155      3.68    5882395           NA      Asia              Western Asia
## 3156      3.06     197118 2.465249e+09  Americas                 Caribbean
## 3157      5.28     303236           NA      Asia              Western Asia
## 3158      6.68   74848466 1.808562e+10      Asia             Southern Asia
## 3159      2.20     248785 1.634413e+09  Americas                 Caribbean
## 3160      2.11    9479262           NA    Europe            Eastern Europe
## 3161      1.73    9806885 1.392425e+11    Europe            Western Europe
## 3162      6.20     136991 2.163883e+08  Americas           Central America
## 3163      6.98    3432262 9.412883e+08    Africa            Western Africa
## 3164      6.67     374801           NA      Asia             Southern Asia
## 3165      5.90    5233677 5.687931e+09  Americas             South America
## 3166      2.27    4041623           NA    Europe           Southern Europe
## 3167      6.40     887793 8.005667e+08    Africa           Southern Africa
## 3168      4.34  113776467 3.578781e+11  Americas             South America
## 3169      4.88     173826 4.744444e+09      Asia        South-Eastern Asia
## 3170      2.18    8790072           NA    Europe            Eastern Europe
## 3171      6.98    6398937 1.006938e+09    Africa            Western Africa
## 3172      7.45    3825484 6.479366e+08    Africa            Eastern Africa
## 3173      5.44    7222050           NA      Asia        South-Eastern Asia
## 3174      6.47    8187840 4.998157e+09    Africa             Middle Africa
## 3175      1.75   23723801 3.736901e+11  Americas          Northern America
## 3176      6.65     275479           NA    Africa            Western Africa
## 3177      5.95    2108417 7.797799e+08    Africa             Middle Africa
## 3178      6.86    4254770 9.050826e+08    Africa             Middle Africa
## 3179      2.89   10746328 2.212809e+10  Americas             South America
## 3180      2.87  936554514 1.411975e+11      Asia              Eastern Asia
## 3181      4.37   25905124 4.562160e+10  Americas             South America
## 3182      7.08     275496           NA    Africa            Eastern Africa
## 3183      6.44   24242643 7.221780e+09    Africa             Middle Africa
## 3184      6.30    1651134 1.271076e+09    Africa             Middle Africa
## 3185      3.78    2207727 6.651266e+09  Americas           Central America
## 3186      7.84    7237451 7.641754e+09    Africa            Western Africa
## 3187      2.01    4536198           NA    Europe           Southern Europe
## 3188      2.33    9634677 2.307609e+10  Americas                 Caribbean
## 3189      2.31     665528 2.700939e+09      Asia              Western Asia
## 3190      2.30   10188839           NA    Europe            Eastern Europe
## 3191      1.66    5095956 9.535289e+10    Europe           Northern Europe
## 3192      6.67     277622           NA    Africa            Eastern Africa
## 3193      4.85    5411867 9.138008e+09  Americas                 Caribbean
## 3194      5.16    7374235 9.271639e+09  Americas             South America
## 3195      5.51   40377668 3.120523e+10    Africa           Northern Africa
## 3196      5.51    4328817 9.775170e+09  Americas           Central America
## 3197      5.68     220352           NA    Africa             Middle Africa
## 3198      6.62    2188806           NA    Africa            Eastern Africa
## 3199      2.08    1443926           NA    Europe           Northern Europe
## 3200      7.20   33614153           NA    Africa            Eastern Africa
## 3201      3.99     598258 1.035593e+09   Oceania                 Melanesia
## 3202      1.69    4738949 6.323659e+10    Europe           Northern Europe
## 3203      1.92   53509578 7.899352e+11    Europe            Western Europe
## 3204      4.30     138867 1.363291e+09   Oceania                 Polynesia
## 3205      5.54     678786 4.592836e+09    Africa             Middle Africa
## 3206      6.33     551823 3.578767e+08    Africa            Western Africa
## 3207      2.42    4973542 7.025274e+09      Asia              Western Asia
## 3208      1.50   78524727 1.136868e+12    Europe            Western Europe
## 3209      6.72   10189889 2.484658e+09    Africa            Western Africa
## 3210      2.32    9255749 8.266076e+10    Europe           Southern Europe
## 3211      2.35      49848 6.745124e+08  Americas          Northern America
## 3212      4.34      90187 1.813915e+08  Americas                 Caribbean
## 3213      6.20    6579710 1.035629e+10  Americas           Central America
## 3214      6.43    4393551           NA    Africa            Western Africa
## 3215      6.46     805481 1.181160e+08    Africa            Western Africa
## 3216      4.44     762445 6.360738e+08  Americas             South America
## 3217      5.78    5341418           NA  Americas                 Caribbean
## 3218      6.65    3306988 3.492048e+09  Americas           Central America
## 3219      2.44    4633329 4.503314e+10      Asia              Eastern Asia
## 3220      2.11   10650975 3.758319e+10    Europe            Eastern Europe
## 3221      2.49     222142 4.390232e+09    Europe           Northern Europe
## 3222      4.92  650907559 1.505942e+11      Asia             Southern Asia
## 3223      4.81  137322122 4.625948e+10      Asia        South-Eastern Asia
## 3224      6.29   34814231 7.683182e+10      Asia             Southern Asia
## 3225      6.83   12460997           NA      Asia              Western Asia
## 3226      3.34    3287620           NA    Europe           Northern Europe
## 3227      3.51    3513516 4.187504e+10      Asia              Western Asia
## 3228      1.99   55775934 6.564316e+11    Europe           Southern Europe
## 3229      4.12    2066247 6.221753e+09  Americas                 Caribbean
## 3230      1.89  113067848 2.354762e+12      Asia              Eastern Asia
## 3231      7.46    2091716 2.680998e+09      Asia              Western Asia
## 3232      3.11   14461278           NA      Asia              Central Asia
## 3233      7.70   14527187 5.825749e+09    Africa            Eastern Africa
## 3234      4.98      56815 8.430174e+07   Oceania                Micronesia
## 3235      3.11   35832213 1.113570e+11      Asia              Eastern Asia
## 3236      6.05    1180939           NA      Asia              Western Asia
## 3237      4.15    3426646           NA      Asia              Central Asia
## 3238      6.14    3131492           NA      Asia        South-Eastern Asia
## 3239      1.91    2481660 7.258772e+09    Europe           Northern Europe
## 3240      4.27    2606224           NA      Asia              Western Asia
## 3241      5.71    1208836 3.181224e+08    Africa           Southern Africa
## 3242      6.93    1724313 1.263883e+09    Africa            Western Africa
## 3243      7.98    2840378           NA    Africa           Northern Africa
## 3244      2.13    3355098           NA    Europe           Northern Europe
## 3245      1.50     358961 7.121350e+09    Europe            Western Europe
## 3246      1.44     243729           NA      Asia              Eastern Asia
## 3247      2.67    1851068           NA    Europe           Southern Europe
## 3248      7.01    8031589 2.874665e+09    Africa            Eastern Africa
## 3249      7.58    5627788 8.691016e+08    Africa            Eastern Africa
## 3250      3.99   12891715 2.108057e+10      Asia        South-Eastern Asia
## 3251      6.93     144645           NA      Asia             Southern Asia
## 3252      7.00    6712545 1.475852e+09    Africa            Western Africa
## 3253      2.09     311455 1.224329e+09    Europe           Southern Europe
## 3254      6.59    1407621 7.659067e+08    Africa            Western Africa
## 3255      3.07     922325 1.571718e+09    Africa            Eastern Africa
## 3256      5.42   64337694 2.646784e+11  Americas           Central America
## 3257      6.49      66110           NA   Oceania                Micronesia
## 3258      2.46    3910636           NA    Europe            Eastern Europe
## 3259      6.78    1562212           NA      Asia              Eastern Asia
## 3260      2.40     565509           NA    Europe           Southern Europe
## 3261      5.97   18688782 1.808995e+10    Africa           Northern Africa
## 3262      6.53   11001909           NA    Africa            Eastern Africa
## 3263      6.62     949734           NA    Africa           Southern Africa
## 3264      5.85   13913775 2.036591e+09      Asia             Southern Asia
## 3265      1.58   13827329 2.098195e+11    Europe            Western Europe
## 3266      4.10     134710 1.499572e+09   Oceania                 Melanesia
## 3267      2.32    3122551 3.154149e+10   Oceania Australia and New Zealand
## 3268      6.42    2973805 4.561695e+09  Americas           Central America
## 3269      7.63    5476206 1.281625e+09    Africa            Western Africa
## 3270      6.76   67425435 3.000091e+10    Africa            Western Africa
## 3271      1.75    4041789 8.055048e+10    Europe           Northern Europe
## 3272      8.02     977806 5.029077e+09      Asia              Western Asia
## 3273      6.60   70953777 2.211136e+10      Asia             Southern Asia
## 3274      4.26    1837887 5.340152e+09  Americas           Central America
## 3275      5.90    2967620 1.925690e+09   Oceania                 Melanesia
## 3276      5.20    2935375 3.167341e+09  Americas             South America
## 3277      5.44   16061327 3.574630e+10  Americas             South America
## 3278      5.51   43650333 4.425023e+10      Asia        South-Eastern Asia
## 3279      2.27   34779313           NA    Europe            Eastern Europe
## 3280      2.57    9441167 5.597973e+10    Europe           Southern Europe
## 3281      2.77    3036799 2.518592e+10  Americas                 Caribbean
## 3282      6.21     182370           NA      Asia              Western Asia
## 3283      2.58   22083933           NA    Europe            Eastern Europe
## 3284      1.92  135406786           NA    Europe            Eastern Europe
## 3285      8.42    4648070 1.028597e+09    Africa            Eastern Africa
## 3286      5.22     112826           NA  Americas                 Caribbean
## 3287      4.54      97649 1.377402e+08  Americas                 Caribbean
## 3288      6.55     153244           NA   Oceania                 Polynesia
## 3289      7.30    8295384 1.326975e+11      Asia              Western Asia
## 3290      7.46    5160313 2.699704e+09    Africa            Western Africa
## 3291      2.37    8663327           NA    Europe           Southern Europe
## 3292      4.41      62500 2.172752e+08    Africa            Eastern Africa
## 3293      7.01    2886607 8.276820e+08    Africa            Western Africa
## 3294      1.95    2317796 1.744985e+10      Asia        South-Eastern Asia
## 3295      2.47    4844392           NA    Europe            Eastern Europe
## 3296      2.17    1777316           NA    Europe           Southern Europe
## 3297      7.10     207942           NA   Oceania                 Melanesia
## 3298      5.06   27009755 8.377559e+10    Africa           Southern Africa
## 3299      2.59   36687352 3.178824e+11    Europe           Southern Europe
## 3300      3.63   14274023 5.475218e+09      Asia             Southern Asia
## 3301      6.92   12958110 6.090888e+09    Africa           Northern Africa
## 3302      4.34     361053 9.683627e+08  Americas             South America
## 3303      6.76     550135 4.002241e+08    Africa           Southern Africa
## 3304      1.65    8245975 1.505807e+11    Europe           Northern Europe
## 3305      1.57    6341216           NA    Europe            Western Europe
## 3306      7.36    8088148 7.514370e+09      Asia              Western Asia
## 3307      6.04    3608761           NA      Asia              Central Asia
## 3308      6.73   17018013           NA    Africa            Eastern Africa
## 3309      4.03   44416007 3.049495e+10      Asia        South-Eastern Asia
## 3310      4.51     630151           NA      Asia        South-Eastern Asia
## 3311      7.28    2518566 7.781210e+08    Africa            Western Africa
## 3312      5.47      90296           NA   Oceania                 Polynesia
## 3313      3.27    1039757 5.953740e+09  Americas                 Caribbean
## 3314      5.71    5915006 7.833564e+09    Africa           Northern Africa
## 3315      4.74   41020211 1.138642e+11      Asia              Western Asia
## 3316      5.44    2655036           NA      Asia              Central Asia
## 3317      7.10   11470741           NA    Africa            Eastern Africa
## 3318      2.00   49290087           NA    Europe            Eastern Europe
## 3319      5.74     722849 4.231030e+10      Asia              Western Asia
## 3320      1.74   56224944 8.140211e+11    Europe           Northern Europe
## 3321      1.78  223090871 4.733337e+12  Americas          Northern America
## 3322      2.91    2857107 1.382676e+10  Americas             South America
## 3323      5.66   14762133           NA      Asia              Central Asia
## 3324      5.79     106223           NA   Oceania                 Melanesia
## 3325      4.48   14127790 8.910573e+10  Americas             South America
## 3326      7.52    1398295           NA      Asia              Western Asia
## 3327      5.61   50899504           NA      Asia        South-Eastern Asia
## 3328      8.47    7226885           NA      Asia              Western Asia
## 3329      7.38    5343550 2.716902e+09    Africa            Eastern Africa
## 3330      7.33    6580739 3.177463e+09    Africa            Eastern Africa
## 3331      3.95    2571845           NA    Europe           Southern Europe
## 3332      7.14   18212331 3.257826e+10    Africa           Northern Africa
## 3333      7.19    7717139           NA    Africa             Middle Africa
## 3334      2.24      70508 2.794899e+08  Americas                 Caribbean
## 3335      3.39   27277742 1.847816e+11  Americas             South America
## 3336      2.48    2991954           NA      Asia              Western Asia
## 3337      2.43      60106           NA  Americas                 Caribbean
## 3338      1.95   14368543 1.986672e+11   Oceania Australia and New Zealand
## 3339      1.60    7616309 1.102107e+11    Europe            Western Europe
## 3340      3.54    5975045           NA      Asia              Western Asia
## 3341      3.01     201511 2.814809e+09  Americas                 Caribbean
## 3342      5.16     323511           NA      Asia              Western Asia
## 3343      6.59   76948378 1.936497e+10      Asia             Southern Asia
## 3344      2.12     250035 1.734637e+09  Americas                 Caribbean
## 3345      2.09    9535069           NA    Europe            Eastern Europe
## 3346      1.69    9825779 1.431996e+11    Europe            Western Europe
## 3347      6.11     138972 2.335280e+08  Americas           Central America
## 3348      7.00    3523270 9.531022e+08    Africa            Western Africa
## 3349      6.64     387731           NA      Asia             Southern Asia
## 3350      5.76    5350320 5.804687e+09  Americas             South America
## 3351      2.20    4073480           NA    Europe           Southern Europe
## 3352      6.35     923305 9.153104e+08    Africa           Southern Africa
## 3353      4.26  116532153 3.694437e+11  Americas             South America
## 3354      4.65     180357 5.065919e+09      Asia        South-Eastern Asia
## 3355      2.17    8815565           NA    Europe            Eastern Europe
## 3356      7.04    6530820 1.053336e+09    Africa            Western Africa
## 3357      7.46    3917866 6.418422e+08    Africa            Eastern Africa
## 3358      5.46    6982522           NA      Asia        South-Eastern Asia
## 3359      6.52    8425707 6.097902e+09    Africa             Middle Africa
## 3360      1.70   23994948 3.884643e+11  Americas          Northern America
## 3361      6.56     278152           NA    Africa            Western Africa
## 3362      5.95    2158844 7.892092e+08    Africa             Middle Africa
## 3363      6.89    4336389 9.008320e+08    Africa             Middle Africa
## 3364      2.79   10907901 2.377949e+10  Americas             South America
## 3365      2.74  950537317 1.577177e+11      Asia              Eastern Asia
## 3366      4.25   26502172 4.948276e+10  Americas             South America
## 3367      7.11     286583           NA    Africa            Eastern Africa
## 3368      6.49   24948113 6.835755e+09    Africa             Middle Africa
## 3369      6.27    1699781 1.351913e+09    Africa             Middle Africa
## 3370      3.72    2266153 7.068146e+09  Americas           Central America
## 3371      7.77    7569558 8.475428e+09    Africa            Western Africa
## 3372      2.01    4555413           NA    Europe           Southern Europe
## 3373      2.13    9711393 2.459818e+10  Americas                 Caribbean
## 3374      2.31     673252 2.911002e+09      Asia              Western Asia
## 3375      2.28   10251436           NA    Europe            Eastern Europe
## 3376      1.67    5108836 9.752173e+10    Europe           Northern Europe
## 3377      6.60     308213           NA    Africa            Eastern Africa
## 3378      4.69    5543520 9.333624e+09  Americas                 Caribbean
## 3379      5.02    7571953 9.902955e+09  Americas             South America
## 3380      5.47   41324806 3.300881e+10    Africa           Northern Africa
## 3381      5.39    4415625 1.029548e+10  Americas           Central America
## 3382      5.69     215284           NA    Africa             Middle Africa
## 3383      6.62    2251129           NA    Africa            Eastern Africa
## 3384      2.07    1454309           NA    Europe           Northern Europe
## 3385      7.23   34053431           NA    Africa            Eastern Africa
## 3386      3.97     609348 1.054890e+09   Oceania                 Melanesia
## 3387      1.65    4749940 6.508292e+10    Europe           Northern Europe
## 3388      1.87   53685486 8.207030e+11    Europe            Western Europe
## 3389      4.19     143033 1.498155e+09   Oceania                 Polynesia
## 3390      5.60     694734 3.488295e+09    Africa             Middle Africa
## 3391      6.34     567828 3.804818e+08    Africa            Western Africa
## 3392      2.38    5004521 7.547190e+09      Asia              Western Asia
## 3393      1.49   78426715 1.171071e+12    Europe            Western Europe
## 3394      6.67   10354490 2.695256e+09    Africa            Western Africa
## 3395      2.28    9388188 8.865107e+10    Europe           Southern Europe
## 3396      2.20      49864 7.150959e+08  Americas          Northern America
## 3397      4.30      89070 1.912133e+08  Americas                 Caribbean
## 3398      6.20    6754258 1.087376e+10  Americas           Central America
## 3399      6.47    4416074           NA    Africa            Western Africa
## 3400      6.33     819371 1.336200e+08    Africa            Western Africa
## 3401      4.20     773227 6.245851e+08  Americas             South America
## 3402      5.87    5450550           NA  Americas                 Caribbean
## 3403      6.54    3413426 3.841452e+09  Americas           Central America
## 3404      2.26    4786580 4.884540e+10      Asia              Eastern Asia
## 3405      2.08   10704187 3.923685e+10    Europe            Eastern Europe
## 3406      2.42     224019 4.654380e+09    Europe           Northern Europe
## 3407      4.84  665936435 1.591970e+11      Asia             Southern Asia
## 3408      4.68  140665859 5.051792e+10      Asia        South-Eastern Asia
## 3409      6.35   35977589 7.108531e+10      Asia             Southern Asia
## 3410      6.75   12859226           NA      Asia              Western Asia
## 3411      3.22    3339499           NA    Europe           Northern Europe
## 3412      3.43    3594470 4.389405e+10      Asia              Western Asia
## 3413      1.90   55983298 6.777009e+11    Europe           Southern Europe
## 3414      3.97    2089015 6.218412e+09  Americas                 Caribbean
## 3415      1.84  114054587 2.478903e+12      Asia              Eastern Asia
## 3416      7.39    2146662 3.244118e+09      Asia              Western Asia
## 3417      3.05   14610810           NA      Asia              Central Asia
## 3418      7.62   15081598 6.228454e+09    Africa            Eastern Africa
## 3419      5.03      57664 8.519502e+07   Oceania                Micronesia
## 3420      2.88   36356187 1.217079e+11      Asia              Eastern Asia
## 3421      5.87    1247597           NA      Asia              Western Asia
## 3422      4.08    3491143           NA      Asia              Central Asia
## 3423      6.19    3164146           NA      Asia        South-Eastern Asia
## 3424      1.90    2491980 7.497187e+09    Europe           Northern Europe
## 3425      4.18    2604875           NA      Asia              Western Asia
## 3426      5.67    1241159 3.763925e+08    Africa           Southern Africa
## 3427      6.95    1775200 1.324754e+09    Africa            Western Africa
## 3428      7.94    2952877           NA    Africa           Northern Africa
## 3429      2.10    3380879           NA    Europe           Northern Europe
## 3430      1.48     361078 7.411543e+09    Europe            Western Europe
## 3431      1.49     242458           NA      Asia              Eastern Asia
## 3432      2.63    1877687           NA    Europe           Southern Europe
## 3433      6.86    8268902 2.798147e+09    Africa            Eastern Africa
## 3434      7.61    5807170 9.537962e+08    Africa            Eastern Africa
## 3435      3.91   13191699 2.248286e+10      Asia        South-Eastern Asia
## 3436      6.95     148797           NA      Asia             Southern Asia
## 3437      7.02    6831530 1.454253e+09    Africa            Western Africa
## 3438      2.10     313953 1.360978e+09    Europe           Southern Europe
## 3439      6.54    1448664 7.620411e+08    Africa            Western Africa
## 3440      2.95     937820 1.631928e+09    Africa            Eastern Africa
## 3441      5.16   66025613 2.883854e+11  Americas           Central America
## 3442      6.40      68221           NA   Oceania                Micronesia
## 3443      2.45    3942141           NA    Europe            Eastern Europe
## 3444      6.59    1603908           NA      Asia              Eastern Asia
## 3445      2.35     570062           NA    Europe           Southern Europe
## 3446      5.88   19133462 1.849384e+10    Africa           Northern Africa
## 3447      6.52   11320103           NA    Africa            Eastern Africa
## 3448      6.58     970569           NA    Africa           Southern Africa
## 3449      5.82   14228941 2.126318e+09      Asia             Southern Asia
## 3450      1.58   13925970 2.147099e+11    Europe            Western Europe
## 3451      3.88     137223 1.646531e+09   Oceania                 Melanesia
## 3452      2.19    3129098 3.161383e+10   Oceania Australia and New Zealand
## 3453      6.33    3065118 4.204112e+09  Americas           Central America
## 3454      7.65    5635954 1.454293e+09    Africa            Western Africa
## 3455      6.77   69512233 2.827161e+10    Africa            Western Africa
## 3456      1.77    4056280 8.365486e+10    Europe           Northern Europe
## 3457      8.14    1032799 4.843326e+09      Asia              Western Asia
## 3458      6.58   73204087 2.389100e+10      Asia             Southern Asia
## 3459      4.13    1884512 5.860278e+09  Americas           Central America
## 3460      5.84    3047769 2.090334e+09   Oceania                 Melanesia
## 3461      5.20    3012833 3.526837e+09  Americas             South America
## 3462      5.30   16491087 3.584737e+10  Americas             South America
## 3463      5.40   44866279 4.653890e+10      Asia        South-Eastern Asia
## 3464      2.28   35100942           NA    Europe            Eastern Europe
## 3465      2.49    9560753 5.755610e+10    Europe           Southern Europe
## 3466      2.72    3089805 2.685046e+10  Americas                 Caribbean
## 3467      6.08     192018           NA      Asia              Western Asia
## 3468      2.51   22279485           NA    Europe            Eastern Europe
## 3469      1.90  136259517           NA    Europe            Eastern Europe
## 3470      8.44    4804375 1.122722e+09    Africa            Eastern Africa
## 3471      5.06     114551           NA  Americas                 Caribbean
## 3472      4.34      98634 1.541364e+08  Americas                 Caribbean
## 3473      6.43     154010           NA   Oceania                 Polynesia
## 3474      7.28    8785326 1.314042e+11      Asia              Western Asia
## 3475      7.45    5289445 2.592959e+09    Africa            Western Africa
## 3476      2.36    8746982           NA    Europe           Southern Europe
## 3477      4.20      63880 2.632325e+08    Africa            Eastern Africa
## 3478      7.04    2951001 8.475988e+08    Africa            Western Africa
## 3479      1.83    2344224 1.896388e+10      Asia        South-Eastern Asia
## 3480      2.44    4895130           NA    Europe            Eastern Europe
## 3481      2.14    1795649           NA    Europe           Southern Europe
## 3482      6.99     215353           NA   Oceania                 Melanesia
## 3483      4.97   27674446 8.630101e+10    Africa           Southern Africa
## 3484      2.48   37055640 3.225330e+11    Europe           Southern Europe
## 3485      3.56   14534087 5.784778e+09      Asia             Southern Asia
## 3486      6.89   13429688 5.729638e+09    Africa           Northern Africa
## 3487      4.18     361463 1.040422e+09  Americas             South America
## 3488      6.73     567560 4.055356e+08    Africa           Southern Africa
## 3489      1.60    8272499 1.532182e+11    Europe           Northern Europe
## 3490      1.54    6321583           NA    Europe            Western Europe
## 3491      7.29    8363346 8.170121e+09      Asia              Western Asia
## 3492      5.89    3707624           NA      Asia              Central Asia
## 3493      6.71   17556148           NA    Africa            Eastern Africa
## 3494      3.81   45423442 3.363464e+10      Asia        South-Eastern Asia
## 3495      4.51     606295           NA      Asia        South-Eastern Asia
## 3496      7.27    2576468 8.640679e+08    Africa            Western Africa
## 3497      5.51      91360           NA   Oceania                 Polynesia
## 3498      3.27    1054109 6.550095e+09  Americas                 Caribbean
## 3499      5.61    6054914 8.338083e+09    Africa           Northern Africa
## 3500      4.61   41953105 1.155755e+11      Asia              Western Asia
## 3501      5.28    2723006           NA      Asia              Central Asia
## 3502      7.10   11817951           NA    Africa            Eastern Africa
## 3503      1.99   49525597           NA    Europe            Eastern Europe
## 3504      5.62     827394 4.163773e+10      Asia              Western Asia
## 3505      1.73   56223974 8.404059e+11    Europe           Northern Europe
## 3506      1.75  225239456 4.999656e+12  Americas          Northern America
## 3507      2.85    2875970 1.456981e+10  Americas             South America
## 3508      5.48   15148932           NA      Asia              Central Asia
## 3509      5.72     109429           NA   Oceania                 Melanesia
## 3510      4.39   14525929 9.119695e+10  Americas             South America
## 3511      7.46    1433382           NA      Asia              Western Asia
## 3512      5.42   52015279           NA      Asia        South-Eastern Asia
## 3513      8.67    7485921           NA      Asia              Western Asia
## 3514      7.33    5532350 2.731947e+09    Africa            Eastern Africa
## 3515      7.27    6796946 3.091451e+09    Africa            Eastern Africa
## 3516      3.81    2626290           NA    Europe           Southern Europe
## 3517      7.02   18760761 3.501441e+10    Africa           Northern Africa
## 3518      7.20    7952882           NA    Africa             Middle Africa
## 3519      2.16      70553 3.000144e+08  Americas                 Caribbean
## 3520      3.37   27684530 2.036714e+11  Americas             South America
## 3521      2.42    3044564           NA      Asia              Western Asia
## 3522      2.41      59978           NA  Americas                 Caribbean
## 3523      1.91   14532401 2.068394e+11   Oceania Australia and New Zealand
## 3524      1.60    7605888 1.162240e+11    Europe            Western Europe
## 3525      3.41    6068531           NA      Asia              Western Asia
## 3526      2.99     206038 3.550580e+09  Americas                 Caribbean
## 3527      5.04     342829           NA      Asia              Western Asia
## 3528      6.48   79141947 2.029481e+10      Asia             Southern Asia
## 3529      2.06     251176 1.867623e+09  Americas                 Caribbean
## 3530      2.08    9593007           NA    Europe            Eastern Europe
## 3531      1.66    9842453 1.465520e+11    Europe            Western Europe
## 3532      5.99     141308 2.510823e+08  Americas           Central America
## 3533      7.02    3618509 1.015395e+09    Africa            Western Africa
## 3534      6.60     400378           NA      Asia             Southern Asia
## 3535      5.63    5469123 5.812427e+09  Americas             South America
## 3536      2.14    4107135           NA    Europe           Southern Europe
## 3537      6.29     959666 1.026508e+09    Africa           Southern Africa
## 3538      4.17  119341444 3.944413e+11  Americas             South America
## 3539      4.43     186786 6.208914e+09      Asia        South-Eastern Asia
## 3540      2.14    8840131           NA    Europe            Eastern Europe
## 3541      7.09    6671659 1.091937e+09    Africa            Western Africa
## 3542      7.46    4018927 6.525286e+08    Africa            Eastern Africa
## 3543      5.55    6795102           NA      Asia        South-Eastern Asia
## 3544      6.56    8673666 6.465918e+09    Africa             Middle Africa
## 3545      1.70   24257594 4.032450e+11  Americas          Northern America
## 3546      6.47     281555           NA    Africa            Western Africa
## 3547      5.95    2213888 7.697546e+08    Africa             Middle Africa
## 3548      6.93    4421448 7.076838e+08    Africa             Middle Africa
## 3549      2.72   11070198 2.584410e+10  Americas             South America
## 3550      2.80  964155176 1.697042e+11      Asia              Eastern Asia
## 3551      4.12   27113510 5.214634e+10  Americas             South America
## 3552      7.13     297765           NA    Africa            Eastern Africa
## 3553      6.54   25656486 6.865155e+09    Africa             Middle Africa
## 3554      6.23    1749859 1.484579e+09    Africa             Middle Africa
## 3555      3.67    2326708 7.417251e+09  Americas           Central America
## 3556      7.70    7912390 8.678364e+09    Africa            Western Africa
## 3557      2.01    4576030           NA    Europe           Southern Europe
## 3558      1.99    9777287 2.486586e+10  Americas                 Caribbean
## 3559      2.33     680013 3.199353e+09      Asia              Western Asia
## 3560      2.23   10302778           NA    Europe            Eastern Europe
## 3561      1.60    5118065 1.013740e+11    Europe           Northern Europe
## 3562      6.52     336254           NA    Africa            Eastern Africa
## 3563      4.55    5675930 9.756568e+09  Americas                 Caribbean
## 3564      4.88    7772652 1.041921e+10  Americas             South America
## 3565      5.42   42321740 3.500216e+10    Africa           Northern Africa
## 3566      5.27    4498757 9.865101e+09  Americas           Central America
## 3567      5.71     215014           NA    Africa             Middle Africa
## 3568      6.63    2316054           NA    Africa            Eastern Africa
## 3569      2.06    1464468           NA    Europe           Northern Europe
## 3570      7.27   34569428           NA    Africa            Eastern Africa
## 3571      3.94     621541 1.183849e+09   Oceania                 Melanesia
## 3572      1.64    4762758 6.971808e+10    Europe           Northern Europe
## 3573      1.85   53857610 8.490117e+11    Europe            Western Europe
## 3574      4.08     147299 1.556972e+09   Oceania                 Polynesia
## 3575      5.65     711544 3.504844e+09    Africa             Middle Africa
## 3576      6.34     585155 3.754283e+08    Africa            Western Africa
## 3577      2.34    5037237 8.103444e+09      Asia              Western Asia
## 3578      1.48   78305017 1.219674e+12    Europe            Western Europe
## 3579      6.61   10550770 2.627472e+09    Africa            Western Africa
## 3580      2.24    9513594 9.156067e+10    Europe           Southern Europe
## 3581      2.19      49947 7.498538e+08  Americas          Northern America
## 3582      4.27      88571 2.027088e+08  Americas                 Caribbean
## 3583      6.20    6933492 1.138629e+10  Americas           Central America
## 3584      6.50    4451872           NA    Africa            Western Africa
## 3585      6.28     834068 1.362846e+08    Africa            Western Africa
## 3586      3.94     781677 6.131196e+08  Americas             South America
## 3587      5.97    5566265           NA  Americas                 Caribbean
## 3588      6.43    3523283 4.020633e+09  Americas           Central America
## 3589      2.10    4930298 5.453079e+10      Asia              Eastern Asia
## 3590      2.03   10742694 4.029625e+10    Europe            Eastern Europe
## 3591      2.36     225972 4.880610e+09    Europe           Northern Europe
## 3592      4.76  681358553 1.508579e+11      Asia             Southern Asia
## 3593      4.56  144053516 5.410096e+10      Asia        South-Eastern Asia
## 3594      6.42   37256771 6.602106e+10      Asia             Southern Asia
## 3595      6.66   13257910           NA      Asia              Western Asia
## 3596      3.11    3387822           NA    Europe           Northern Europe
## 3597      3.35    3671264 4.665271e+10      Asia              Western Asia
## 3598      1.81   56168376 7.180862e+11    Europe           Southern Europe
## 3599      3.84    2113880 6.152494e+09  Americas                 Caribbean
## 3600      1.80  114993274 2.614847e+12      Asia              Eastern Asia
## 3601      7.33    2208562 3.539984e+09      Asia              Western Asia
## 3602      3.00   14761509           NA      Asia              Central Asia
## 3603      7.54   15661414 6.702765e+09    Africa            Eastern Africa
## 3604      5.06      58509 7.532518e+07   Oceania                Micronesia
## 3605      2.69   36889651 1.299633e+11      Asia              Eastern Asia
## 3606      5.70    1315428           NA      Asia              Western Asia
## 3607      4.04    3557793           NA      Asia              Central Asia
## 3608      6.23    3202270           NA      Asia        South-Eastern Asia
## 3609      1.91    2502294 7.725384e+09    Europe           Northern Europe
## 3610      4.09    2602573           NA      Asia              Western Asia
## 3611      5.63    1274216 3.872850e+08    Africa           Southern Africa
## 3612      6.96    1830963 1.368005e+09    Africa            Western Africa
## 3613      7.87    3069540           NA    Africa           Northern Africa
## 3614      2.07    3406311           NA    Europe           Northern Europe
## 3615      1.46     362791 7.585388e+09    Europe            Western Europe
## 3616      1.56     243073           NA      Asia              Eastern Asia
## 3617      2.60    1902718           NA    Europe           Southern Europe
## 3618      6.69    8507958 3.073895e+09    Africa            Eastern Africa
## 3619      7.62    5986639 9.957265e+08    Africa            Eastern Africa
## 3620      3.84   13504433 2.458481e+10      Asia        South-Eastern Asia
## 3621      7.00     153285           NA      Asia             Southern Asia
## 3622      7.03    6956779 1.605432e+09    Africa            Western Africa
## 3623      2.10     316781 1.503755e+09    Europe           Southern Europe
## 3624      6.48    1490811 7.985432e+08    Africa            Western Africa
## 3625      2.82     952587 1.689315e+09    Africa            Eastern Africa
## 3626      4.92   67688533 3.163536e+11  Americas           Central America
## 3627      6.31      70550           NA   Oceania                Micronesia
## 3628      2.46    3974506           NA    Europe            Eastern Europe
## 3629      6.40    1646291           NA      Asia              Eastern Asia
## 3630      2.31     574953           NA    Europe           Southern Europe
## 3631      5.78   19595092 1.938040e+10    Africa           Northern Africa
## 3632      6.51   11635174           NA    Africa            Eastern Africa
## 3633      6.52     991365           NA    Africa           Southern Africa
## 3634      5.80   14554356 2.176688e+09      Asia             Southern Asia
## 3635      1.56   14017909 2.190511e+11    Europe            Western Europe
## 3636      3.70     139545 1.422602e+09   Oceania                 Melanesia
## 3637      2.24    3135453 3.222736e+10   Oceania Australia and New Zealand
## 3638      6.23    3157356 3.090914e+09  Americas           Central America
## 3639      7.68    5798584 1.558232e+09    Africa            Western Africa
## 3640      6.78   71619216 3.018261e+10    Africa            Western Africa
## 3641      1.75    4069626 8.730031e+10    Europe           Northern Europe
## 3642      8.23    1091855 5.053127e+09      Asia              Western Asia
## 3643      6.56   75575981 2.478893e+10      Asia             Southern Asia
## 3644      4.00    1931393 6.124453e+09  Americas           Central America
## 3645      5.77    3130125 2.128637e+09   Oceania                 Melanesia
## 3646      5.21    3094479 3.927379e+09  Americas             South America
## 3647      5.15   16924758 3.792522e+10  Americas             South America
## 3648      5.29   46113992 4.916355e+10      Asia        South-Eastern Asia
## 3649      2.30   35435627           NA    Europe            Eastern Europe
## 3650      2.39    9667021 6.080165e+10    Europe           Southern Europe
## 3651      2.66    3140600 2.849081e+10  Americas                 Caribbean
## 3652      5.95     205244           NA      Asia              Western Asia
## 3653      2.50   22457125           NA    Europe            Eastern Europe
## 3654      1.87  137144808           NA    Europe            Eastern Europe
## 3655      8.45    4968628 1.255988e+09    Africa            Eastern Africa
## 3656      4.89     116292           NA  Americas                 Caribbean
## 3657      4.15      99589 1.593032e+08  Americas                 Caribbean
## 3658      6.32     154763           NA   Oceania                 Polynesia
## 3659      7.25    9323290 1.443154e+11      Asia              Western Asia
## 3660      7.42    5424299 2.774510e+09    Africa            Western Africa
## 3661      2.36    8829038           NA    Europe           Southern Europe
## 3662      4.02      65153 3.048084e+08    Africa            Eastern Africa
## 3663      7.05    3017670 8.858362e+08    Africa            Western Africa
## 3664      1.74    2375417 2.074591e+10      Asia        South-Eastern Asia
## 3665      2.41    4943732           NA    Europe            Eastern Europe
## 3666      2.09    1815101           NA    Europe           Southern Europe
## 3667      6.87     222905           NA   Oceania                 Melanesia
## 3668      4.88   28360820 8.957229e+10    Africa           Southern Africa
## 3669      2.36   37397232 3.226670e+11    Europe           Southern Europe
## 3670      3.49   14789300 6.155209e+09      Asia             Southern Asia
## 3671      6.85   13917268 5.442091e+09    Africa           Northern Africa
## 3672      4.04     362137 9.791465e+08  Americas             South America
## 3673      6.70     585335 4.181353e+08    Africa           Southern Africa
## 3674      1.66    8294832 1.591018e+11    Europe           Northern Europe
## 3675      1.52    6306578           NA    Europe            Western Europe
## 3676      7.20    8651904 8.466889e+09      Asia              Western Asia
## 3677      5.76    3809991           NA      Asia              Central Asia
## 3678      6.69   18110990           NA    Africa            Eastern Africa
## 3679      3.59   46412310 3.544141e+10      Asia        South-Eastern Asia
## 3680      4.61     586886           NA      Asia        South-Eastern Asia
## 3681      7.24    2642845 8.194151e+08    Africa            Western Africa
## 3682      5.54      92299           NA   Oceania                 Polynesia
## 3683      3.28    1069199 6.785857e+09  Americas                 Caribbean
## 3684      5.49    6205210 8.885689e+09    Africa           Northern Africa
## 3685      4.48   42912350 1.148541e+11      Asia              Western Asia
## 3686      5.14    2791575           NA      Asia              Central Asia
## 3687      7.10   12177677           NA    Africa            Eastern Africa
## 3688      1.98   49750150           NA    Europe            Eastern Europe
## 3689      5.52     927303 5.034983e+10      Asia              Western Asia
## 3690      1.72   56220089 8.629941e+11    Europe           Northern Europe
## 3691      1.80  227411604 5.157035e+12  Americas          Northern America
## 3692      2.79    2896021 1.547301e+10  Americas             South America
## 3693      5.30   15543520           NA      Asia              Central Asia
## 3694      5.65     112579 1.398431e+08   Oceania                 Melanesia
## 3695      4.30   14931741 9.189402e+10  Americas             South America
## 3696      7.39    1469730           NA      Asia              Western Asia
## 3697      5.23   53169674           NA      Asia        South-Eastern Asia
## 3698      8.84    7765087           NA      Asia              Western Asia
## 3699      7.26    5727577 2.649335e+09    Africa            Eastern Africa
## 3700      7.20    7031159 3.193377e+09    Africa            Eastern Africa
## 3701      3.68    2681245 2.833407e+09    Europe           Southern Europe
## 3702      6.89   19337723 3.529123e+10    Africa           Northern Africa
## 3703      7.20    8211950           NA    Africa             Middle Africa
## 3704      2.12      70301 3.258009e+08  Americas                 Caribbean
## 3705      3.33   28105889 2.121273e+11  Americas             South America
## 3706      2.39    3096298           NA      Asia              Western Asia
## 3707      2.39      60096           NA  Americas                 Caribbean
## 3708      1.89   14708323 2.131354e+11   Oceania Australia and New Zealand
## 3709      1.65    7597269 1.182970e+11    Europe            Western Europe
## 3710      3.29    6163990           NA      Asia              Western Asia
## 3711      2.99     210660 3.781200e+09  Americas                 Caribbean
## 3712      4.92     359902 3.983299e+09      Asia              Western Asia
## 3713      6.36   81364176 2.046105e+10      Asia             Southern Asia
## 3714      2.00     252197 1.955993e+09  Americas                 Caribbean
## 3715      2.08    9654455           NA    Europe            Eastern Europe
## 3716      1.63    9855747 1.530649e+11    Europe            Western Europe
## 3717      5.85     144151 2.891628e+08  Americas           Central America
## 3718      7.03    3718024 1.084256e+09    Africa            Western Africa
## 3719      6.55     412561           NA      Asia             Southern Asia
## 3720      5.52    5589572 5.732694e+09  Americas             South America
## 3721      2.09    4144726           NA    Europe           Southern Europe
## 3722      6.22     996331 1.149554e+09    Africa           Southern Africa
## 3723      4.07  122199721 4.303787e+11  Americas             South America
## 3724      4.25     193057 5.774495e+09      Asia        South-Eastern Asia
## 3725      2.11    8865235 1.146430e+10    Europe            Eastern Europe
## 3726      7.13    6822840 1.100638e+09    Africa            Western Africa
## 3727      7.45    4126544 6.589955e+08    Africa            Eastern Africa
## 3728      5.69    6718241           NA      Asia        South-Eastern Asia
## 3729      6.61    8932121 6.338844e+09    Africa             Middle Africa
## 3730      1.68   24515788 4.119657e+11  Americas          Northern America
## 3731      6.38     285599 1.680025e+08    Africa            Western Africa
## 3732      5.95    2274095 7.352804e+08    Africa             Middle Africa
## 3733      6.96    4512795 6.648854e+08    Africa             Middle Africa
## 3734      2.68   11234340 2.795004e+10  Americas             South America
## 3735      2.32  977837433 1.829411e+11      Asia              Eastern Asia
## 3736      3.99   27737905 5.428341e+10  Americas             South America
## 3737      7.13     308518 1.356114e+08    Africa            Eastern Africa
## 3738      6.59   26357407 7.015839e+09    Africa             Middle Africa
## 3739      6.18    1801688 1.746409e+09    Africa             Middle Africa
## 3740      3.62    2389309 7.473021e+09  Americas           Central America
## 3741      7.60    8265549 7.727415e+09    Africa            Western Africa
## 3742      2.00    4598126           NA    Europe           Southern Europe
## 3743      1.89    9835177 2.366000e+10  Americas                 Caribbean
## 3744      2.35     685406 3.383420e+09      Asia              Western Asia
## 3745      2.18   10337827           NA    Europe            Eastern Europe
## 3746      1.55    5123435 1.008797e+11    Europe           Northern Europe
## 3747      6.44     358960           NA    Africa            Eastern Africa
## 3748      4.42    5809271 1.053404e+10  Americas                 Caribbean
## 3749      4.74    7976449 1.088244e+10  Americas             South America
## 3750      5.37   43369552 3.850634e+10    Africa           Northern Africa
## 3751      5.14    4577683 8.703849e+09  Americas           Central America
## 3752      5.73     220605           NA    Africa             Middle Africa
## 3753      6.63    2383858           NA    Africa            Eastern Africa
## 3754      2.06    1474487           NA    Europe           Northern Europe
## 3755      7.32   35239974           NA    Africa            Eastern Africa
## 3756      3.91     635256 1.164866e+09   Oceania                 Melanesia
## 3757      1.63    4779454 7.347522e+10    Europe           Northern Europe
## 3758      1.83   54053224 8.629057e+11    Europe            Western Europe
## 3759      3.99     151702 1.564522e+09   Oceania                 Polynesia
## 3760      5.68     729165 3.594320e+09    Africa             Middle Africa
## 3761      6.34     604371 3.989680e+08    Africa            Western Africa
## 3762      2.32    5073241 8.474279e+09      Asia              Western Asia
## 3763      1.47   78159527 1.236857e+12    Europe            Western Europe
## 3764      6.54   10802025 2.639865e+09    Africa            Western Africa
## 3765      2.17    9620274 9.218066e+10    Europe           Southern Europe
## 3766      2.44      50176 8.149112e+08  Americas          Northern America
## 3767      4.25      89004 2.018054e+08  Americas                 Caribbean
## 3768      6.18    7118628 1.181441e+10  Americas           Central America
## 3769      6.53    4506559           NA    Africa            Western Africa
## 3770      6.32     849886 1.145436e+08    Africa            Western Africa
## 3771      3.65     786614 6.237504e+08  Americas             South America
## 3772      6.06    5688832           NA  Americas                 Caribbean
## 3773      6.31    3635862 4.047511e+09  Americas           Central America
## 3774      1.97    5053684 6.015033e+10      Asia              Eastern Asia
## 3775      1.98   10759022 4.037684e+10    Europe            Eastern Europe
## 3776      2.31     228127 5.161144e+09    Europe           Northern Europe
## 3777      4.68  697229745 1.610195e+11      Asia             Southern Asia
## 3778      4.43  147490366 5.882127e+10      Asia        South-Eastern Asia
## 3779      6.48   38668222 5.728671e+10      Asia             Southern Asia
## 3780      6.57   13653358           NA      Asia              Western Asia
## 3781      3.00    3431078           NA    Europe           Northern Europe
## 3782      3.28    3744667 4.985835e+10      Asia              Western Asia
## 3783      1.72   56336446 7.427166e+11    Europe           Southern Europe
## 3784      3.73    2142438 5.800931e+09  Americas                 Caribbean
## 3785      1.78  115912104 2.688523e+12      Asia              Eastern Asia
## 3786      7.26    2280670 4.212997e+09      Asia              Western Asia
## 3787      2.97   14918991           NA      Asia              Central Asia
## 3788      7.46   16267906 7.077582e+09    Africa            Eastern Africa
## 3789      5.07      59340 4.184758e+07   Oceania                Micronesia
## 3790      2.52   37451085 1.280291e+11      Asia              Eastern Asia
## 3791      5.52    1384342           NA      Asia              Western Asia
## 3792      4.04    3627499           NA      Asia              Central Asia
## 3793      6.28    3252701           NA      Asia        South-Eastern Asia
## 3794      1.94    2513397 8.040771e+09    Europe           Northern Europe
## 3795      4.00    2605294           NA      Asia              Western Asia
## 3796      5.59    1307403 3.766549e+08    Africa           Southern Africa
## 3797      6.97    1892529 1.311939e+09    Africa            Western Africa
## 3798      7.77    3191304           NA    Africa           Northern Africa
## 3799      2.06    3431933           NA    Europe           Northern Europe
## 3800      1.46     364044 7.649173e+09    Europe            Western Europe
## 3801      1.67     246236           NA      Asia              Eastern Asia
## 3802      2.57    1924194           NA    Europe           Southern Europe
## 3803      6.51    8746516 3.098664e+09    Africa            Eastern Africa
## 3804      7.62    6163225 9.997766e+08    Africa            Eastern Africa
## 3805      3.79   13833739 2.641496e+10      Asia        South-Eastern Asia
## 3806      7.07     158282           NA      Asia             Southern Asia
## 3807      7.05    7090125 1.535984e+09    Africa            Western Africa
## 3808      2.09     319898 1.609765e+09    Europe           Southern Europe
## 3809      6.43    1534085 8.254637e+08    Africa            Western Africa
## 3810      2.67     966036 1.519348e+09    Africa            Eastern Africa
## 3811      4.71   69330974 3.455633e+11  Americas           Central America
## 3812      6.22      72967           NA   Oceania                Micronesia
## 3813      2.48    4009843 2.804577e+09    Europe            Eastern Europe
## 3814      6.21    1689622           NA      Asia              Eastern Asia
## 3815      2.27     580755           NA    Europe           Southern Europe
## 3816      5.68   20071902 2.008626e+10    Africa           Northern Africa
## 3817      6.49   11936379 2.462152e+09    Africa            Eastern Africa
## 3818      6.45    1012761 2.292422e+09    Africa           Southern Africa
## 3819      5.76   14890080 2.126202e+09      Asia             Southern Asia
## 3820      1.60   14103279 2.261725e+11    Europe            Western Europe
## 3821      3.55     141866 1.416912e+09   Oceania                 Melanesia
## 3822      2.15    3146771 3.245737e+10   Oceania Australia and New Zealand
## 3823      6.13    3249910 3.233459e+09  Americas           Central America
## 3824      7.71    5963159 1.523445e+09    Africa            Western Africa
## 3825      6.78   73698096 3.145174e+10    Africa            Western Africa
## 3826      1.72    4082525 9.123246e+10    Europe           Northern Europe
## 3827      8.30    1154375 5.358105e+09      Asia              Western Asia
## 3828      6.54   78071984 2.732129e+10      Asia             Southern Asia
## 3829      3.88    1978575 6.191730e+09  Americas           Central America
## 3830      5.69    3215483 2.079605e+09   Oceania                 Melanesia
## 3831      5.22    3180628 4.509373e+09  Americas             South America
## 3832      5.01   17359118 3.909238e+10  Americas             South America
## 3833      5.18   47396966 5.169493e+10      Asia        South-Eastern Asia
## 3834      2.31   35782855           NA    Europe            Eastern Europe
## 3835      2.29    9755635 6.359204e+10    Europe           Southern Europe
## 3836      2.61    3187704 2.892572e+10  Americas                 Caribbean
## 3837      5.81     223715           NA      Asia              Western Asia
## 3838      2.44   22612149 4.094522e+10    Europe            Eastern Europe
## 3839      1.86  138063062           NA    Europe            Eastern Europe
## 3840      8.45    5140786 1.368419e+09    Africa            Eastern Africa
## 3841      4.70     117984 2.675183e+08  Americas                 Caribbean
## 3842      3.99     100506 1.625311e+08  Americas                 Caribbean
## 3843      6.20     155554           NA   Oceania                 Polynesia
## 3844      7.21    9912917 1.537236e+11      Asia              Western Asia
## 3845      7.38    5568651 2.682656e+09    Africa            Western Africa
## 3846      2.35    8908293           NA    Europe           Southern Europe
## 3847      3.85      66292 2.918585e+08    Africa            Eastern Africa
## 3848      7.06    3086406 9.287417e+08    Africa            Western Africa
## 3849      1.82    2414524 2.283033e+10      Asia        South-Eastern Asia
## 3850      2.37    4988654           NA    Europe            Eastern Europe
## 3851      2.04    1835839           NA    Europe           Southern Europe
## 3852      6.75     230614           NA   Oceania                 Melanesia
## 3853      4.79   29077143 9.550251e+10    Africa           Southern Africa
## 3854      2.22   37704867 3.297939e+11    Europe           Southern Europe
## 3855      3.41   15036562 6.515045e+09      Asia             Southern Asia
## 3856      6.80   14418063 5.525045e+09    Africa           Northern Africa
## 3857      3.92     362777 9.276249e+08  Americas             South America
## 3858      6.66     603373 4.701892e+08    Africa           Southern Africa
## 3859      1.68    8310915 1.618065e+11    Europe           Northern Europe
## 3860      1.51    6303608 1.804436e+11    Europe            Western Europe
## 3861      7.09    8956156 9.481493e+09      Asia              Western Asia
## 3862      5.66    3917642           NA      Asia              Central Asia
## 3863      6.65   18684893           NA    Africa            Eastern Africa
## 3864      3.39   47385325 3.727499e+10      Asia        South-Eastern Asia
## 3865      4.77     577580           NA      Asia        South-Eastern Asia
## 3866      7.21    2720838 9.388608e+08    Africa            Western Africa
## 3867      5.55      93007           NA   Oceania                 Polynesia
## 3868      3.28    1085308 7.490962e+09  Americas                 Caribbean
## 3869      5.35    6368169 9.544895e+09    Africa           Northern Africa
## 3870      4.36   43905790 1.120433e+11      Asia              Western Asia
## 3871      5.01    2861000           NA      Asia              Central Asia
## 3872      7.10   12547754           NA    Africa            Eastern Africa
## 3873      1.98   49968811           NA    Europe            Eastern Europe
## 3874      5.42    1016789 6.237074e+10      Asia              Western Asia
## 3875      1.73   56221513 8.449820e+11    Europe           Northern Europe
## 3876      1.82  229588208 5.142220e+12  Americas          Northern America
## 3877      2.72    2915775 1.637716e+10  Americas             South America
## 3878      5.13   15951899           NA      Asia              Central Asia
## 3879      5.58     115634 1.239013e+08   Oceania                 Melanesia
## 3880      4.20   15343917 8.783109e+10  Americas             South America
## 3881      7.31    1509484           NA      Asia              Western Asia
## 3882      5.05   54372518           NA      Asia        South-Eastern Asia
## 3883      8.99    8059381           NA      Asia              Western Asia
## 3884      7.18    5929497 2.729759e+09    Africa            Eastern Africa
## 3885      7.10    7289083 3.653884e+09    Africa            Eastern Africa
## 3886      3.56    2735329 2.996204e+09    Europe           Southern Europe
## 3887      6.74   19943667 3.634997e+10    Africa           Northern Africa
## 3888      7.20    8497950           NA    Africa             Middle Africa
## 3889      2.10      69750 3.391057e+08  Americas                 Caribbean
## 3890      3.27   28543366 2.000583e+11  Americas             South America
## 3891      2.37    3145885           NA      Asia              Western Asia
## 3892      2.38      60567           NA  Americas                 Caribbean
## 3893      1.94   14898019 2.203987e+11   Oceania Australia and New Zealand
## 3894      1.67    7591618 1.181265e+11    Europe            Western Europe
## 3895      3.18    6261942           NA      Asia              Western Asia
## 3896      2.99     215404 3.432331e+09  Americas                 Caribbean
## 3897      4.80     374125 3.771519e+09      Asia              Western Asia
## 3898      6.22   83599582 2.123898e+10      Asia             Southern Asia
## 3899      1.96     253080 1.893272e+09  Americas                 Caribbean
## 3900      2.08    9719634           NA    Europe            Eastern Europe
## 3901      1.61    9865512 1.526374e+11    Europe            Western Europe
## 3902      5.68     147566 2.928948e+08  Americas           Central America
## 3903      7.03    3822206 1.192186e+09    Africa            Western Africa
## 3904      6.50     423887 1.151286e+08      Asia             Southern Asia
## 3905      5.42    5711598 5.748494e+09  Americas             South America
## 3906      2.05    4185074           NA    Europe           Southern Europe
## 3907      6.13    1033073 1.253760e+09    Africa           Southern Africa
## 3908      3.97  125107382 4.114707e+11  Americas             South America
## 3909      4.10     199136 4.629602e+09      Asia        South-Eastern Asia
## 3910      2.08    8891245 1.202607e+10    Europe            Eastern Europe
## 3911      7.15    6985158 1.147473e+09    Africa            Western Africa
## 3912      7.45    4239673 7.391510e+08    Africa            Eastern Africa
## 3913      5.85    6774509           NA      Asia        South-Eastern Asia
## 3914      6.65    9201146 7.421688e+09    Africa             Middle Africa
## 3915      1.65   24768525 4.263973e+11  Americas          Northern America
## 3916      6.27     290428 1.822014e+08    Africa            Western Africa
## 3917      5.96    2340259 7.239239e+08    Africa             Middle Africa
## 3918      6.99    4610964 6.718196e+08    Africa             Middle Africa
## 3919      2.66   11400489 2.927412e+10  Americas             South America
## 3920      2.71  991553829 1.924541e+11      Asia              Eastern Asia
## 3921      3.87   28375995 5.551196e+10  Americas             South America
## 3922      7.10     318659 1.408527e+08    Africa            Eastern Africa
## 3923      6.64   27049145 7.180748e+09    Africa             Middle Africa
## 3924      6.11    1855391 2.054121e+09    Africa             Middle Africa
## 3925      3.58    2454127 7.304007e+09  Americas           Central America
## 3926      7.50    8629121 7.997913e+09    Africa            Western Africa
## 3927      1.99    4621418           NA    Europe           Southern Europe
## 3928      1.84    9884219 2.831826e+10  Americas                 Caribbean
## 3929      2.39     689173 3.468580e+09      Asia              Western Asia
## 3930      2.12   10353750           NA    Europe            Eastern Europe
## 3931      1.44    5124807 9.998502e+10    Europe           Northern Europe
## 3932      6.37     374683           NA    Africa            Eastern Africa
## 3933      4.30    5943591 1.098489e+10  Americas                 Caribbean
## 3934      4.62    8183194 1.124863e+10  Americas             South America
## 3935      5.31   44465918 3.995267e+10    Africa           Northern Africa
## 3936      5.00    4652058 7.794215e+09  Americas           Central America
## 3937      5.75     232934           NA    Africa             Middle Africa
## 3938      6.63    2453689           NA    Africa            Eastern Africa
## 3939      2.08    1483938           NA    Europe           Northern Europe
## 3940      7.36   36093319 5.147105e+09    Africa            Eastern Africa
## 3941      3.86     650957 1.238602e+09   Oceania                 Melanesia
## 3942      1.65    4800899 7.442049e+10    Europe           Northern Europe
## 3943      1.84   54279038 8.713518e+11    Europe            Western Europe
## 3944      3.92     156240 1.697580e+09   Oceania                 Polynesia
## 3945      5.71     747593 3.777463e+09    Africa             Middle Africa
## 3946      6.32     625413 4.122212e+08    Africa            Western Africa
## 3947      2.30    5111792 8.920655e+09      Asia              Western Asia
## 3948      1.47   77990369 1.243403e+12    Europe            Western Europe
## 3949      6.47   11117608 2.547389e+09    Africa            Western Africa
## 3950      2.09    9704947 9.074843e+10    Europe           Southern Europe
## 3951      2.33      50587 8.203326e+08  Americas          Northern America
## 3952      4.24      90575 2.035254e+08  Americas                 Caribbean
## 3953      6.15    7310397 1.189084e+10  Americas           Central America
## 3954      6.56    4584305           NA    Africa            Western Africa
## 3955      6.42     866947 1.353533e+08    Africa            Western Africa
## 3956      3.36     787728 6.330828e+08  Americas             South America
## 3957      6.12    5818673           NA  Americas                 Caribbean
## 3958      6.19    3750843 4.150042e+09  Americas           Central America
## 3959      1.85    5152057 6.575466e+10      Asia              Eastern Asia
## 3960      1.93   10750270 4.153434e+10    Europe            Eastern Europe
## 3961      2.27     230525 5.381267e+09    Europe           Northern Europe
## 3962      4.60  713561406 1.706906e+11      Asia             Southern Asia
## 3963      4.30  150978841 6.361414e+10      Asia        South-Eastern Asia
## 3964      6.52   40209077 5.430858e+10      Asia             Southern Asia
## 3965      6.49   14046273           NA      Asia              Western Asia
## 3966      2.90    3468884           NA    Europe           Northern Europe
## 3967      3.22    3815270 5.242499e+10      Asia              Western Asia
## 3968      1.64   56489623 7.489869e+11    Europe           Southern Europe
## 3969      3.64    2175634 5.954044e+09  Americas                 Caribbean
## 3970      1.76  116821569 2.800819e+12      Asia              Eastern Asia
## 3971      7.18    2365665 4.411325e+09      Asia              Western Asia
## 3972      2.97   15082185           NA      Asia              Central Asia
## 3973      7.37   16901181 7.344658e+09    Africa            Eastern Africa
## 3974      5.05      60137 4.039513e+07   Oceania                Micronesia
## 3975      2.38   38046253 1.359196e+11      Asia              Eastern Asia
## 3976      5.32    1452383           NA      Asia              Western Asia
## 3977      4.05    3700312           NA      Asia              Central Asia
## 3978      6.32    3317570           NA      Asia        South-Eastern Asia
## 3979      1.97    2524843 8.381023e+09    Europe           Northern Europe
## 3980      3.90    2615753           NA      Asia              Western Asia
## 3981      5.54    1340694 3.792713e+08    Africa           Southern Africa
## 3982      6.97    1961795 1.283906e+09    Africa            Western Africa
## 3983      7.62    3318560           NA    Africa           Northern Africa
## 3984      2.05    3457365           NA    Europe           Northern Europe
## 3985      1.45     364779 7.607029e+09    Europe            Western Europe
## 3986      1.78     252258           NA      Asia              Eastern Asia
## 3987      2.54    1941445           NA    Europe           Southern Europe
## 3988      6.36    8983494 2.798131e+09    Africa            Eastern Africa
## 3989      7.62    6327344 9.468872e+08    Africa            Eastern Africa
## 3990      3.75   14180093 2.824867e+10      Asia        South-Eastern Asia
## 3991      7.15     163834           NA      Asia             Southern Asia
## 3992      7.06    7233877 1.468223e+09    Africa            Western Africa
## 3993      2.08     323298 1.663077e+09    Europe           Southern Europe
## 3994      6.37    1578585 8.539446e+08    Africa            Western Africa
## 3995      2.53     978067 1.608722e+09    Africa            Eastern Africa
## 3996      4.51   70950741 3.758782e+11  Americas           Central America
## 3997      6.13      75462           NA   Oceania                Micronesia
## 3998      2.51    4048617 2.784632e+09    Europe            Eastern Europe
## 3999      6.03    1733479 7.399324e+08      Asia              Eastern Asia
## 4000      2.23     587689           NA    Europe           Southern Europe
## 4001      5.57   20564359 1.953101e+10    Africa           Northern Africa
## 4002      6.47   12228508 2.585260e+09    Africa            Eastern Africa
## 4003      6.36    1034446 2.312871e+09    Africa           Southern Africa
## 4004      5.72   15237302 2.303569e+09      Asia             Southern Asia
## 4005      1.56   14181967 2.244002e+11    Europe            Western Europe
## 4006      3.44     144227 1.317728e+09   Oceania                 Melanesia
## 4007      2.16    3164965 3.392277e+10   Oceania Australia and New Zealand
## 4008      6.02    3342666 3.406879e+09  Americas           Central America
## 4009      7.73    6129762 1.532722e+09    Africa            Western Africa
## 4010      6.78   75729572 2.732279e+10    Africa            Western Africa
## 4011      1.70    4095177 9.264432e+10    Europe           Northern Europe
## 4012      8.34    1220548 6.271506e+09      Asia              Western Asia
## 4013      6.51   80691701 2.948535e+10      Asia             Southern Asia
## 4014      3.78    2026057 6.761791e+09  Americas           Central America
## 4015      5.61    3304188 2.073890e+09   Oceania                 Melanesia
## 4016      5.21    3271454 4.894304e+09  Americas             South America
## 4017      4.87   17792551 4.189945e+10  Americas             South America
## 4018      5.08   48715592 5.346459e+10      Asia        South-Eastern Asia
## 4019      2.32   36145211           NA    Europe            Eastern Europe
## 4020      2.18    9824239 6.462103e+10    Europe           Southern Europe
## 4021      2.55    3230497 2.923530e+10  Americas                 Caribbean
## 4022      5.67     248053           NA      Asia              Western Asia
## 4023      2.35   22739965 4.125875e+10    Europe            Eastern Europe
## 4024      1.88  139006739           NA    Europe            Eastern Europe
## 4025      8.44    5313908 1.442809e+09    Africa            Eastern Africa
## 4026      4.51     119593 2.769088e+08  Americas                 Caribbean
## 4027      3.83     101378 1.724934e+08  Americas                 Caribbean
## 4028      6.09     156435           NA   Oceania                 Polynesia
## 4029      7.14   10556936 1.609347e+11      Asia              Western Asia
## 4030      7.34    5723541 2.818653e+09    Africa            Western Africa
## 4031      2.34    8984599           NA    Europe           Southern Europe
## 4032      3.70      67298 2.678818e+08    Africa            Eastern Africa
## 4033      7.05    3155368 9.555028e+08    Africa            Western Africa
## 4034      1.78    2463245 2.527894e+10      Asia        South-Eastern Asia
## 4035      2.34    5029208           NA    Europe            Eastern Europe
## 4036      1.98    1857854           NA    Europe           Southern Europe
## 4037      6.63     238488           NA   Oceania                 Melanesia
## 4038      4.70   29828874 1.006221e+11    Africa           Southern Africa
## 4039      2.09   37976189 3.293570e+11    Europe           Southern Europe
## 4040      3.32   15274137 6.886371e+09      Asia             Southern Asia
## 4041      6.74   14935471 5.935974e+09    Africa           Northern Africa
## 4042      3.82     363309 9.287949e+08  Americas             South America
## 4043      6.62     621314 5.390317e+08    Africa           Southern Africa
## 4044      1.64    8319810 1.614792e+11    Europe           Northern Europe
## 4045      1.51    6315799 1.833331e+11    Europe            Western Europe
## 4046      6.98    9277263 1.038297e+10      Asia              Western Asia
## 4047      5.60    4030104           NA      Asia              Central Asia
## 4048      6.62   19279543           NA    Africa            Eastern Africa
## 4049      3.20   48336894 3.947677e+10      Asia        South-Eastern Asia
## 4050      4.96     580556           NA      Asia        South-Eastern Asia
## 4051      7.16    2812071 9.077358e+08    Africa            Western Africa
## 4052      5.53      93452 1.209531e+08   Oceania                 Polynesia
## 4053      3.28    1102562 7.833840e+09  Americas                 Caribbean
## 4054      5.19    6545025 1.007121e+10    Africa           Northern Africa
## 4055      4.24   44936836 1.174848e+11      Asia              Western Asia
## 4056      4.92    2931343           NA      Asia              Central Asia
## 4057      7.10   12927007           NA    Africa            Eastern Africa
## 4058      1.99   50181709           NA    Europe            Eastern Europe
## 4059      5.34    1093108 6.527671e+10      Asia              Western Asia
## 4060      1.74   56231020 8.347028e+11    Europe           Northern Europe
## 4061      1.81  231765783 5.272896e+12  Americas          Northern America
## 4062      2.67    2935036 1.663257e+10  Americas             South America
## 4063      4.97   16375135           NA      Asia              Central Asia
## 4064      5.50     118578 1.291047e+08   Oceania                 Melanesia
## 4065      4.10   15761800 8.751243e+10  Americas             South America
## 4066      7.20    1553094           NA      Asia              Western Asia
## 4067      4.87   55627743           NA      Asia        South-Eastern Asia
## 4068      9.11    8369708           NA      Asia              Western Asia
## 4069      7.10    6138069 2.898129e+09    Africa            Eastern Africa
## 4070      6.97    7571965 4.111549e+09    Africa            Eastern Africa
## 4071      3.46    2788315 3.084550e+09    Europe           Southern Europe
## 4072      6.58   20575701 3.867637e+10    Africa           Northern Africa
## 4073      7.20    8807511           NA    Africa             Middle Africa
## 4074      2.10      68950 3.396730e+08  Americas                 Caribbean
## 4075      3.21   28993989 1.901410e+11  Americas             South America
## 4076      2.38    3192877           NA      Asia              Western Asia
## 4077      2.36      61344           NA  Americas                 Caribbean
## 4078      1.93   15101227 2.275129e+11   Oceania Australia and New Zealand
## 4079      1.66    7588957 1.204264e+11    Europe            Western Europe
## 4080      3.09    6362289           NA      Asia              Western Asia
## 4081      2.99     220275 3.662260e+09  Americas                 Caribbean
## 4082      4.69     385950 3.486535e+09      Asia              Western Asia
## 4083      6.06   85868228 2.174372e+10      Asia             Southern Asia
## 4084      1.92     253836 1.798436e+09  Americas                 Caribbean
## 4085      2.09    9787558           NA    Europe            Eastern Europe
## 4086      1.59    9872709 1.535456e+11    Europe            Western Europe
## 4087      5.51     151498 2.920655e+08  Americas           Central America
## 4088      7.02    3931355 1.218832e+09    Africa            Western Africa
## 4089      6.46     434385 1.245636e+08      Asia             Southern Asia
## 4090      5.34    5835186 5.522076e+09  Americas             South America
## 4091      2.02    4226663           NA    Europe           Southern Europe
## 4092      6.01    1069962 1.406286e+09    Africa           Southern Africa
## 4093      3.85  128054757 4.138582e+11  Americas             South America
## 4094      3.99     205061 4.812779e+09      Asia        South-Eastern Asia
## 4095      2.06    8916713 1.230682e+10    Europe            Eastern Europe
## 4096      7.17    7158256 1.257197e+09    Africa            Western Africa
## 4097      7.45    4359122 7.313633e+08    Africa            Eastern Africa
## 4098      6.01    6945053           NA      Asia        South-Eastern Asia
## 4099      6.68    9480638 7.979517e+09    Africa             Middle Africa
## 4100      1.64   25017501 4.142066e+11  Americas          Northern America
## 4101      6.17     296071 1.873486e+08    Africa            Western Africa
## 4102      5.96    2411693 7.797799e+08    Africa             Middle Africa
## 4103      7.02    4716073 7.077392e+08    Africa             Middle Africa
## 4104      2.65   11569135 2.625208e+10  Americas             South America
## 4105      2.62 1005328574 2.099674e+11      Asia              Eastern Asia
## 4106      3.74   29027158 5.603848e+10  Americas             South America
## 4107      7.03     328355 1.498442e+08    Africa            Eastern Africa
## 4108      6.69   27741104 7.147883e+09    Africa             Middle Africa
## 4109      6.04    1910800 2.538846e+09    Africa             Middle Africa
## 4110      3.54    2521163 6.771868e+09  Americas           Central America
## 4111      7.38    9002400 8.013975e+09    Africa            Western Africa
## 4112      1.98    4645409           NA    Europe           Southern Europe
## 4113      1.83    9925618 3.084375e+10  Americas                 Caribbean
## 4114      2.42     691711 3.677448e+09      Asia              Western Asia
## 4115      2.07   10352607           NA    Europe            Eastern Europe
## 4116      1.43    5122810 1.036984e+11    Europe           Northern Europe
## 4117      6.32     384743           NA    Africa            Eastern Africa
## 4118      4.19    6078816 1.117149e+10  Americas                 Caribbean
## 4119      4.51    8392935 1.118460e+10  Americas             South America
## 4120      5.25   45610430 4.391085e+10    Africa           Northern Africa
## 4121      4.87    4722272 7.302728e+09  Americas           Central America
## 4122      5.78     251301           NA    Africa             Middle Africa
## 4123      6.62    2525005           NA    Africa            Eastern Africa
## 4124      2.10    1492704           NA    Europe           Northern Europe
## 4125      7.40   37109517 5.194255e+09    Africa            Eastern Africa
## 4126      3.81     668196 1.164552e+09   Oceania                 Melanesia
## 4127      1.72    4826135 7.668970e+10    Europe           Northern Europe
## 4128      1.84   54528408 8.924135e+11    Europe            Western Europe
## 4129      3.86     160883 1.866857e+09   Oceania                 Polynesia
## 4130      5.72     766867 3.660455e+09    Africa             Middle Africa
## 4131      6.30     648202 4.090695e+08    Africa            Western Africa
## 4132      2.28    5151850 9.099206e+09      Asia              Western Asia
## 4133      1.46   77812348 1.238494e+12    Europe            Western Europe
## 4134      6.39   11488112 2.371017e+09    Africa            Western Africa
## 4135      2.01    9771250 8.972057e+10    Europe           Southern Europe
## 4136      2.24      51158 7.840767e+08  Americas          Northern America
## 4137      4.24      93091 2.135499e+08  Americas                 Caribbean
## 4138      6.11    7508161 1.147108e+10  Americas           Central America
## 4139      6.59    4684992           NA    Africa            Western Africa
## 4140      6.54     885166 1.410383e+08    Africa            Western Africa
## 4141      3.10     785466 5.495783e+08  Americas             South America
## 4142      6.15    5955265           NA  Americas                 Caribbean
## 4143      6.06    3868296 4.092306e+09  Americas           Central America
## 4144      1.75    5228813 6.767498e+10      Asia              Eastern Asia
## 4145      1.88   10719749 4.271437e+10    Europe            Eastern Europe
## 4146      2.23     233121 5.497210e+09    Europe           Northern Europe
## 4147      4.52  730303461 1.766234e+11      Asia             Southern Asia
## 4148      4.17  154506266 6.431649e+10      Asia        South-Eastern Asia
## 4149      6.52   41862373 6.134523e+10      Asia             Southern Asia
## 4150      6.41   14437661           NA      Asia              Western Asia
## 4151      2.79    3501213           NA    Europe           Northern Europe
## 4152      3.17    3883547 5.337327e+10      Asia              Western Asia
## 4153      1.57   56626403 7.520846e+11    Europe           Southern Europe
## 4154      3.56    2212400 6.077247e+09  Americas                 Caribbean
## 4155      1.75  117708919 2.895391e+12      Asia              Eastern Asia
## 4156      7.07    2462968 4.737102e+09      Asia              Western Asia
## 4157      2.97   15248458           NA      Asia              Central Asia
## 4158      7.27   17559778 7.455303e+09    Africa            Eastern Africa
## 4159      5.02      60918 4.313655e+07   Oceania                Micronesia
## 4160      2.24   38665964 1.458758e+11      Asia              Eastern Asia
## 4161      5.08    1518855           NA      Asia              Western Asia
## 4162      4.07    3775764           NA      Asia              Central Asia
## 4163      6.35    3395113           NA      Asia        South-Eastern Asia
## 4164      2.02    2536340 8.577999e+09    Europe           Northern Europe
## 4165      3.80    2632281           NA      Asia              Western Asia
## 4166      5.49    1374044 3.889685e+08    Africa           Southern Africa
## 4167      6.96    2036325 1.252670e+09    Africa            Western Africa
## 4168      7.42    3450078           NA    Africa           Northern Africa
## 4169      2.05    3482390           NA    Europe           Northern Europe
## 4170      1.45     365098 7.693087e+09    Europe            Western Europe
## 4171      1.88     260921 2.616535e+09      Asia              Eastern Asia
## 4172      2.51    1954990           NA    Europe           Southern Europe
## 4173      6.24    9220693 2.747479e+09    Africa            Eastern Africa
## 4174      7.61    6483571 9.705921e+08    Africa            Eastern Africa
## 4175      3.73   14543585 2.992690e+10      Asia        South-Eastern Asia
## 4176      7.21     169861           NA      Asia             Southern Asia
## 4177      7.07    7386669 1.400132e+09    Africa            Western Africa
## 4178      2.06     326953 1.701069e+09    Europe           Southern Europe
## 4179      6.31    1624310 8.339630e+08    Africa            Western Africa
## 4180      2.41     988890 1.697155e+09    Africa            Eastern Africa
## 4181      4.33   72547995 3.735180e+11  Americas           Central America
## 4182      6.02      78057           NA   Oceania                Micronesia
## 4183      2.55    4089860 3.111294e+09    Europe            Eastern Europe
## 4184      5.86    1777727 8.016586e+08      Asia              Eastern Asia
## 4185      2.19     595353           NA    Europe           Southern Europe
## 4186      5.44   21070647 2.140969e+10    Africa           Northern Africa
## 4187      6.46   12511864 2.406877e+09    Africa            Eastern Africa
## 4188      6.26    1056758 2.304351e+09    Africa           Southern Africa
## 4189      5.68   15596012 2.390630e+09      Asia             Southern Asia
## 4190      1.50   14255051 2.216159e+11    Europe            Western Europe
## 4191      3.35     146592 1.349354e+09   Oceania                 Melanesia
## 4192      2.10    3188664 3.412208e+10   Oceania Australia and New Zealand
## 4193      5.89    3435527 3.379066e+09  Americas           Central America
## 4194      7.75    6299343 1.557599e+09    Africa            Western Africa
## 4195      6.77   77729802 2.725867e+10    Africa            Western Africa
## 4196      1.71    4107655 9.276012e+10    Europe           Northern Europe
## 4197      8.35    1290007 6.997109e+09      Asia              Western Asia
## 4198      6.48   83427522 3.141295e+10      Asia             Southern Asia
## 4199      3.67    2073826 7.123442e+09  Americas           Central America
## 4200      5.52    3395798 2.081209e+09   Oceania                 Melanesia
## 4201      5.19    3366726 4.712405e+09  Americas             South America
## 4202      4.73   18225727 4.164805e+10  Americas             South America
## 4203      4.98   50068493 5.539965e+10      Asia        South-Eastern Asia
## 4204      2.32   36517072           NA    Europe            Eastern Europe
## 4205      2.07    9873144 6.600093e+10    Europe           Southern Europe
## 4206      2.49    3269287 2.834440e+10  Americas                 Caribbean
## 4207      5.50     277242           NA      Asia              Western Asia
## 4208      2.16   22842426 4.290933e+10    Europe            Eastern Europe
## 4209      1.96  139969243           NA    Europe            Eastern Europe
## 4210      8.42    5486431 1.468936e+09    Africa            Eastern Africa
## 4211      4.33     121150 2.469428e+08  Americas                 Caribbean
## 4212      3.69     102202 1.807679e+08  Americas                 Caribbean
## 4213      5.97     157401 1.755931e+08   Oceania                 Polynesia
## 4214      7.05   11247085 1.430739e+11      Asia              Western Asia
## 4215      7.28    5888261 3.039722e+09    Africa            Western Africa
## 4216      2.33    9057974           NA    Europe           Southern Europe
## 4217      3.56      68176 2.648878e+08    Africa            Eastern Africa
## 4218      7.03    3224346 1.001193e+09    Africa            Western Africa
## 4219      1.74    2520494 2.709555e+10      Asia        South-Eastern Asia
## 4220      2.30    5065658           NA    Europe            Eastern Europe
## 4221      1.92    1880699           NA    Europe           Southern Europe
## 4222      6.53     246502           NA   Oceania                 Melanesia
## 4223      4.60   30611206 1.002364e+11    Africa           Southern Africa
## 4224      1.96   38212556 3.334623e+11    Europe           Southern Europe
## 4225      3.22   15503320 7.171571e+09      Asia             Southern Asia
## 4226      6.67   15470415 6.289679e+09    Africa           Northern Africa
## 4227      3.71     363993 9.117229e+08  Americas             South America
## 4228      6.57     639333 5.453522e+08    Africa           Southern Africa
## 4229      1.63    8323466 1.634058e+11    Europe           Northern Europe
## 4230      1.52    6341369 1.809325e+11    Europe            Western Europe
## 4231      6.84    9613517 1.060331e+10      Asia              Western Asia
## 4232      5.56    4146923           NA      Asia              Central Asia
## 4233      6.58   19894677           NA    Africa            Eastern Africa
## 4234      3.02   49265597 4.158971e+10      Asia        South-Eastern Asia
## 4235      5.13     593937           NA      Asia        South-Eastern Asia
## 4236      7.10    2915148 8.752171e+08    Africa            Western Africa
## 4237      5.48      93683 1.266878e+08   Oceania                 Polynesia
## 4238      3.26    1120610 8.150006e+09  Americas                 Caribbean
## 4239      5.02    6733958 1.002148e+10    Africa           Northern Africa
## 4240      4.11   45997940 1.216711e+11      Asia              Western Asia
## 4241      4.84    3002785           NA      Asia              Central Asia
## 4242      7.10   13318149 2.525528e+09    Africa            Eastern Africa
## 4243      2.01   50385836           NA    Europe            Eastern Europe
## 4244      5.27    1158477 6.089056e+10      Asia              Western Asia
## 4245      1.76   56250124 8.530876e+11    Europe           Northern Europe
## 4246      1.81  233953874 5.168479e+12  Americas          Northern America
## 4247      2.61    2954281 1.500959e+10  Americas             South America
## 4248      4.83   16810937           NA      Asia              Central Asia
## 4249      5.43     121433 1.429190e+08   Oceania                 Melanesia
## 4250      4.01   16185895 8.570004e+10  Americas             South America
## 4251      7.08    1599960           NA      Asia              Western Asia
## 4252      4.69   56931822           NA      Asia        South-Eastern Asia
## 4253      9.19    8698304           NA      Asia              Western Asia
## 4254      7.02    6352561 2.816611e+09    Africa            Eastern Africa
## 4255      6.81    7876414 4.219859e+09    Africa            Eastern Africa
## 4256      3.37    2842620 3.118632e+09    Europe           Southern Europe
## 4257      6.39   21228288 4.076489e+10    Africa           Northern Africa
## 4258      7.21    9128655           NA    Africa             Middle Africa
## 4259      2.10      67958 3.555642e+08  Americas                 Caribbean
## 4260      3.16   29454739 1.975092e+11  Americas             South America
## 4261      2.41    3239212           NA      Asia              Western Asia
## 4262      2.35      62204           NA  Americas                 Caribbean
## 4263      1.92   15318254 2.222345e+11   Oceania Australia and New Zealand
## 4264      1.56    7589573 1.239823e+11    Europe            Western Europe
## 4265      3.03    6464775           NA      Asia              Western Asia
## 4266      2.97     225185 3.793993e+09  Americas                 Caribbean
## 4267      4.58     396447 3.708849e+09      Asia              Western Asia
## 4268      5.89   88181211 2.261696e+10      Asia             Southern Asia
## 4269      1.89     254515 1.801669e+09  Americas                 Caribbean
## 4270      2.10    9856780           NA    Europe            Eastern Europe
## 4271      1.58    9878636 1.540244e+11    Europe            Western Europe
## 4272      5.34     155820 2.859146e+08  Americas           Central America
## 4273      7.01    4045352 1.165839e+09    Africa            Western Africa
## 4274      6.41     444789 1.337024e+08      Asia             Southern Asia
## 4275      5.26    5959962 5.298867e+09  Americas             South America
## 4276      1.99    4270598           NA    Europe           Southern Europe
## 4277      5.88    1107103 1.591167e+09    Africa           Southern Africa
## 4278      3.72  131014337 3.997465e+11  Americas             South America
## 4279      3.91     210933 4.836914e+09      Asia        South-Eastern Asia
## 4280      2.03    8939007 1.272898e+10    Europe            Eastern Europe
## 4281      7.17    7340907 1.261547e+09    Africa            Western Africa
## 4282      7.47    4486613 7.585358e+08    Africa            Eastern Africa
## 4283      6.13    7196139           NA      Asia        South-Eastern Asia
## 4284      6.70    9770555 8.527457e+09    Africa             Middle Africa
## 4285      1.62   25272656 4.254639e+11  Americas          Northern America
## 4286      6.08     302174 2.051856e+08    Africa            Western Africa
## 4287      5.96    2485666 7.164115e+08    Africa             Middle Africa
## 4288      7.06    4830055 8.187036e+08    Africa             Middle Africa
## 4289      2.65   11742057 2.525803e+10  Americas             South America
## 4290      2.56 1019698475 2.328538e+11      Asia              Eastern Asia
## 4291      3.63   29687096 5.692634e+10  Americas             South America
## 4292      6.92     337853 1.570682e+08    Africa            Eastern Africa
## 4293      6.74   28448122 7.248790e+09    Africa             Middle Africa
## 4294      5.95    1967596 2.687469e+09    Africa             Middle Africa
## 4295      3.52    2589932 6.965746e+09  Americas           Central America
## 4296      7.26    9383289 7.701410e+09    Africa            Western Africa
## 4297      1.96    4669614           NA    Europe           Southern Europe
## 4298      1.83    9966733 3.251285e+10  Americas                 Caribbean
## 4299      2.44     694074 3.882730e+09      Asia              Western Asia
## 4300      2.02   10340397           NA    Europe            Eastern Europe
## 4301      1.38    5118966 1.064484e+11    Europe           Northern Europe
## 4302      6.27     392908           NA    Africa            Eastern Africa
## 4303      4.08    6214857 1.168850e+10  Americas                 Caribbean
## 4304      4.40    8606214 1.090145e+10  Americas             South America
## 4305      5.19   46807221 4.716076e+10    Africa           Northern Africa
## 4306      4.74    4789472 7.414826e+09  Americas           Central America
## 4307      5.80     273199           NA    Africa             Middle Africa
## 4308      6.61    2598626           NA    Africa            Eastern Africa
## 4309      2.13    1501490           NA    Europe           Northern Europe
## 4310      7.42   38259376 5.622006e+09    Africa            Eastern Africa
## 4311      3.76     685389 1.118435e+09   Oceania                 Melanesia
## 4312      1.74    4853196 7.900866e+10    Europe           Northern Europe
## 4313      1.85   54799049 9.034073e+11    Europe            Western Europe
## 4314      3.81     165611 1.967785e+09   Oceania                 Polynesia
## 4315      5.72     787017 3.865742e+09    Africa             Middle Africa
## 4316      6.28     673230 4.535894e+08    Africa            Western Africa
## 4317      2.28    5194091 9.490643e+09      Asia              Western Asia
## 4318      1.46   77657451 1.257968e+12    Europe            Western Europe
## 4319      6.31   11895130 2.262810e+09    Africa            Western Africa
## 4320      1.91    9822999 8.875282e+10    Europe           Southern Europe
## 4321      2.05      51834 8.111840e+08  Americas          Northern America
## 4322      4.25      95981 2.197986e+08  Americas                 Caribbean
## 4323      6.05    7710142 1.117603e+10  Americas           Central America
## 4324      6.61    4804740           NA    Africa            Western Africa
## 4325      6.64     904391 1.362454e+08    Africa            Western Africa
## 4326      2.88     780367 5.122488e+08  Americas             South America
## 4327      6.15    6096690           NA  Americas                 Caribbean
## 4328      5.93    3988371 4.054479e+09  Americas           Central America
## 4329      1.66    5291210 7.171244e+10      Asia              Eastern Asia
## 4330      1.85   10673963 4.302318e+10    Europe            Eastern Europe
## 4331      2.20     235860 5.378956e+09    Europe           Northern Europe
## 4332      4.44  747374856 1.894972e+11      Asia             Southern Asia
## 4333      4.03  158044343 6.975117e+10      Asia        South-Eastern Asia
## 4334      6.47   43610506 6.907977e+10      Asia             Southern Asia
## 4335      6.34   14824876           NA      Asia              Western Asia
## 4336      2.68    3527472           NA    Europe           Northern Europe
## 4337      3.13    3950241 5.524711e+10      Asia              Western Asia
## 4338      1.51   56744400 7.608780e+11    Europe           Southern Europe
## 4339      3.48    2249890 6.193266e+09  Americas                 Caribbean
## 4340      1.74  118552097 2.984012e+12      Asia              Eastern Asia
## 4341      6.94    2568582 4.831389e+09      Asia              Western Asia
## 4342      2.99   15419452           NA      Asia              Central Asia
## 4343      7.17   18241331 7.552897e+09    Africa            Eastern Africa
## 4344      4.97      61760 4.701174e+07   Oceania                Micronesia
## 4345      2.11   39295418 1.615937e+11      Asia              Eastern Asia
## 4346      4.79    1586205           NA      Asia              Western Asia
## 4347      4.09    3853514           NA      Asia              Central Asia
## 4348      6.36    3483492           NA      Asia        South-Eastern Asia
## 4349      2.06    2548941 9.025725e+09    Europe           Northern Europe
## 4350      3.69    2651295           NA      Asia              Western Asia
## 4351      5.44    1406818 3.765511e+08    Africa           Southern Africa
## 4352      6.95    2107523 1.228908e+09    Africa            Western Africa
## 4353      7.18    3583183           NA    Africa           Northern Africa
## 4354      2.05    3507839           NA    Europe           Northern Europe
## 4355      1.45     365301 7.923040e+09    Europe            Western Europe
## 4356      1.97     271674 2.878188e+09      Asia              Eastern Asia
## 4357      2.47    1965488           NA    Europe           Southern Europe
## 4358      6.17    9462343 2.772264e+09    Africa            Eastern Africa
## 4359      7.60    6659453 1.006686e+09    Africa            Eastern Africa
## 4360      3.70   14926976 3.179741e+10      Asia        South-Eastern Asia
## 4361      7.25     176258           NA      Asia             Southern Asia
## 4362      7.08    7542377 1.467310e+09    Africa            Western Africa
## 4363      2.06     330761 1.690652e+09    Europe           Southern Europe
## 4364      6.26    1671080 8.651143e+08    Africa            Western Africa
## 4365      2.33     998625 1.703668e+09    Africa            Eastern Africa
## 4366      4.17   74133377 3.578441e+11  Americas           Central America
## 4367      5.89      80678           NA   Oceania                Micronesia
## 4368      2.59    4132440 3.246859e+09    Europe            Eastern Europe
## 4369      5.70    1823215 8.484277e+08      Asia              Eastern Asia
## 4370      2.15     602964           NA    Europe           Southern Europe
## 4371      5.29   21583746 2.129033e+10    Africa           Northern Africa
## 4372      6.44   12766859 2.028997e+09    Africa            Eastern Africa
## 4373      6.15    1081740 2.263453e+09    Africa           Southern Africa
## 4374      5.63   15963746 2.319451e+09      Asia             Southern Asia
## 4375      1.47   14325363 2.262033e+11    Europe            Western Europe
## 4376      3.27     148988 1.322367e+09   Oceania                 Melanesia
## 4377      2.10    3215826 3.508583e+10   Oceania Australia and New Zealand
## 4378      5.75    3527935 3.534950e+09  Americas           Central America
## 4379      7.76    6472971 1.483599e+09    Africa            Western Africa
## 4380      6.75   79729311 2.581546e+10    Africa            Western Africa
## 4381      1.66    4120386 9.634706e+10    Europe           Northern Europe
## 4382      8.34    1360921 8.163294e+09      Asia              Western Asia
## 4383      6.46   86264621 3.354224e+10      Asia             Southern Asia
## 4384      3.58    2121921 6.803502e+09  Americas           Central America
## 4385      5.42    3489402 2.148290e+09   Oceania                 Melanesia
## 4386      5.15    3465796 4.569856e+09  Americas             South America
## 4387      4.60   18660443 3.673358e+10  Americas             South America
## 4388      4.88   51455037 5.643818e+10      Asia        South-Eastern Asia
## 4389      2.31   36879742           NA    Europe            Eastern Europe
## 4390      1.96    9904444 6.588667e+10    Europe           Southern Europe
## 4391      2.44    3304717 2.847654e+10  Americas                 Caribbean
## 4392      5.33     309276           NA      Asia              Western Asia
## 4393      2.00   22928996 4.552679e+10    Europe            Eastern Europe
## 4394      2.09  140951400           NA    Europe            Eastern Europe
## 4395      8.40    5669251 1.556784e+09    Africa            Eastern Africa
## 4396      4.16     122738 2.574400e+08  Americas                 Caribbean
## 4397      3.56     102985 1.887203e+08  Americas                 Caribbean
## 4398      5.85     158383 1.763500e+08   Oceania                 Polynesia
## 4399      6.94   11962244 1.313181e+11      Asia              Western Asia
## 4400      7.23    6062682 2.877815e+09    Africa            Western Africa
## 4401      2.32    9127679           NA    Europe           Southern Europe
## 4402      3.43      68906 2.603602e+08    Africa            Eastern Africa
## 4403      6.99    3296530 9.801395e+08    Africa            Western Africa
## 4404      1.61    2583241 2.941700e+10      Asia        South-Eastern Asia
## 4405      2.27    5098607           NA    Europe            Eastern Europe
## 4406      1.85    1903548           NA    Europe           Southern Europe
## 4407      6.43     254602           NA   Oceania                 Melanesia
## 4408      4.50   31409913 9.838550e+10    Africa           Southern Africa
## 4409      1.84   38415495 3.393650e+11    Europe           Southern Europe
## 4410      3.12   15727670 7.516808e+09      Asia             Southern Asia
## 4411      6.61   16015120 6.419403e+09    Africa           Northern Africa
## 4412      3.59     365242 8.841916e+08  Americas             South America
## 4413      6.52     658496 5.519093e+08    Africa           Southern Africa
## 4414      1.61    8326196 1.663631e+11    Europe           Northern Europe
## 4415      1.53    6376791 1.820888e+11    Europe            Western Europe
## 4416      6.70    9960833 1.075485e+10      Asia              Western Asia
## 4417      5.53    4269775           NA      Asia              Central Asia
## 4418      6.54   20528465           NA    Africa            Eastern Africa
## 4419      2.86   50183106 4.391216e+10      Asia        South-Eastern Asia
## 4420      5.26     614379           NA      Asia        South-Eastern Asia
## 4421      7.03    3026378 8.278328e+08    Africa            Western Africa
## 4422      5.39      93775 1.291993e+08   Oceania                 Polynesia
## 4423      3.22    1138673 7.399928e+09  Americas                 Caribbean
## 4424      4.83    6930390 1.049068e+10    Africa           Northern Africa
## 4425      3.98   47072603 1.277194e+11      Asia              Western Asia
## 4426      4.77    3075867           NA      Asia              Central Asia
## 4427      7.10   13727427 2.670608e+09    Africa            Eastern Africa
## 4428      2.03   50579135           NA    Europe            Eastern Europe
## 4429      5.21    1218223 5.800080e+10      Asia              Western Asia
## 4430      1.78   56283959 8.845757e+11    Europe           Northern Europe
## 4431      1.78  236161961 5.401886e+12  Americas          Northern America
## 4432      2.57    2973461 1.346744e+10  Americas             South America
## 4433      4.71   17257774           NA      Asia              Central Asia
## 4434      5.36     124248 1.626892e+08   Oceania                 Melanesia
## 4435      3.93   16617343 8.247359e+10  Americas             South America
## 4436      6.95    1650014           NA      Asia              Western Asia
## 4437      4.52   58277391           NA      Asia        South-Eastern Asia
## 4438      9.22    9043210           NA      Asia              Western Asia
## 4439      6.94    6571673 2.761217e+09    Africa            Eastern Africa
## 4440      6.63    8197564 4.286757e+09    Africa            Eastern Africa
## 4441      3.30    2901590 3.079600e+09    Europe           Southern Europe
## 4442      6.19   21893857 4.304772e+10    Africa           Northern Africa
## 4443      7.21    9444918           NA    Africa             Middle Africa
## 4444      2.10      66863 3.902446e+08  Americas                 Caribbean
## 4445      3.12   29920907 2.018777e+11  Americas             South America
## 4446      2.44    3287588           NA      Asia              Western Asia
## 4447      2.34      62831           NA  Americas                 Caribbean
## 4448      1.84   15548591 2.324540e+11   Oceania Australia and New Zealand
## 4449      1.52    7593397 1.240576e+11    Europe            Western Europe
## 4450      2.98    6568857           NA      Asia              Western Asia
## 4451      2.92     230016 4.331646e+09  Americas                 Caribbean
## 4452      4.47     407223 3.894427e+09      Asia              Western Asia
## 4453      5.71   90559540 2.378867e+10      Asia             Southern Asia
## 4454      1.86     255195 1.862235e+09  Americas                 Caribbean
## 4455      2.10    9925227           NA    Europe            Eastern Europe
## 4456      1.57    9885088 1.578232e+11    Europe            Western Europe
## 4457      5.17     160342 2.915126e+08  Americas           Central America
## 4458      6.99    4163968 1.258288e+09    Africa            Western Africa
## 4459      6.36     456135 1.438853e+08      Asia             Southern Asia
## 4460      5.19    6085499 5.288234e+09  Americas             South America
## 4461      1.97    4318301           NA    Europe           Southern Europe
## 4462      5.73    1144716 1.727138e+09    Africa           Southern Africa
## 4463      3.59  133950551 4.208097e+11  Americas             South America
## 4464      3.84     216893 4.865929e+09      Asia        South-Eastern Asia
## 4465      2.02    8954518 1.316132e+10    Europe            Eastern Europe
## 4466      7.16    7531244 1.239108e+09    Africa            Western Africa
## 4467      7.49    4624617 7.597157e+08    Africa            Eastern Africa
## 4468      6.20    7475011           NA      Asia        South-Eastern Asia
## 4469      6.71   10070779 9.164848e+09    Africa             Middle Africa
## 4470      1.62   25546736 4.502024e+11  Americas          Northern America
## 4471      5.98     308251 2.129483e+08    Africa            Western Africa
## 4472      5.95    2558432 7.843385e+08    Africa             Middle Africa
## 4473      7.09    4955088 8.354781e+08    Africa             Middle Africa
## 4474      2.66   11921407 2.727194e+10  Americas             South America
## 4475      2.60 1035328572 2.682476e+11      Asia              Eastern Asia
## 4476      3.53   30350082 5.883627e+10  Americas             South America
## 4477      6.77     347548 1.635241e+08    Africa            Eastern Africa
## 4478      6.79   29190679 7.650451e+09    Africa             Middle Africa
## 4479      5.86    2025320 2.874951e+09    Africa             Middle Africa
## 4480      3.49    2659772 7.397741e+09  Americas           Central America
## 4481      7.14    9769105 7.493375e+09    Africa            Western Africa
## 4482      1.94    4693432           NA    Europe           Southern Europe
## 4483      1.83   10017061 3.509103e+10  Americas                 Caribbean
## 4484      2.45     697717 4.222775e+09      Asia              Western Asia
## 4485      1.99   10325923           NA    Europe            Eastern Europe
## 4486      1.40    5115308 1.108826e+11    Europe           Northern Europe
## 4487      6.24     404589           NA    Africa            Eastern Africa
## 4488      3.98    6351572 1.183494e+10  Americas                 Caribbean
## 4489      4.31    8823746 1.131966e+10  Americas             South America
## 4490      5.12   48061546 5.003356e+10    Africa           Northern Africa
## 4491      4.61    4855280 7.513959e+09  Americas           Central America
## 4492      5.83     295090           NA    Africa             Middle Africa
## 4493      6.59    2675717           NA    Africa            Eastern Africa
## 4494      2.17    1511272           NA    Europe           Northern Europe
## 4495      7.44   39493503 5.461893e+09    Africa            Eastern Africa
## 4496      3.69     700366 1.212305e+09   Oceania                 Melanesia
## 4497      1.70    4879222 8.146398e+10    Europe           Northern Europe
## 4498      1.85   55084677 9.169096e+11    Europe            Western Europe
## 4499      3.77     170397 2.074157e+09   Oceania                 Polynesia
## 4500      5.71     808088 4.156017e+09    Africa             Middle Africa
## 4501      6.25     701097 4.696250e+08    Africa            Western Africa
## 4502      2.28    5239352 1.000569e+10      Asia              Western Asia
## 4503      1.46   77566776 1.293480e+12    Europe            Western Europe
## 4504      6.22   12311166 2.458488e+09    Africa            Western Africa
## 4505      1.82    9866725 9.053727e+10    Europe           Southern Europe
## 4506      2.11      52532 7.691677e+08  Americas          Northern America
## 4507      4.24      98440 2.303154e+08  Americas                 Caribbean
## 4508      5.99    7913814 1.123154e+10  Americas           Central America
## 4509      6.63    4937230           NA    Africa            Western Africa
## 4510      6.71     924378 1.486563e+08    Africa            Western Africa
## 4511      2.71     773302 4.864892e+08  Americas             South America
## 4512      6.11    6240330           NA  Americas                 Caribbean
## 4513      5.80    4111369 4.230674e+09  Americas           Central America
## 4514      1.57    5350467 7.882822e+10      Asia              Eastern Asia
## 4515      1.83   10622559 4.416675e+10    Europe            Eastern Europe
## 4516      2.17     238647 5.601059e+09    Europe           Northern Europe
## 4517      4.36  764664278 1.967374e+11      Asia             Southern Asia
## 4518      3.89  161555584 7.475383e+10      Asia        South-Eastern Asia
## 4519      6.37   45429019 6.799265e+10      Asia             Southern Asia
## 4520      6.28   15204746           NA      Asia              Western Asia
## 4521      2.56    3547157           NA    Europe           Northern Europe
## 4522      3.11    4016229 5.574641e+10      Asia              Western Asia
## 4523      1.46   56839859 7.854228e+11    Europe           Southern Europe
## 4524      3.39    2284118 6.097744e+09  Americas                 Caribbean
## 4525      1.73  119318921 3.117215e+12      Asia              Eastern Asia
## 4526      6.77    2676515 5.248852e+09      Asia              Western Asia
## 4527      3.01   15596920           NA      Asia              Central Asia
## 4528      7.05   18942599 7.685467e+09    Africa            Eastern Africa
## 4529      4.91      62768 4.643716e+07   Oceania                Micronesia
## 4530      1.98   39912900 1.746865e+11      Asia              Eastern Asia
## 4531      4.46    1657920           NA      Asia              Western Asia
## 4532      4.10    3933002           NA      Asia              Central Asia
## 4533      6.37    3579370 7.330703e+08      Asia        South-Eastern Asia
## 4534      2.10    2564006 9.545053e+09    Europe           Northern Europe
## 4535      3.59    2667229           NA      Asia              Western Asia
## 4536      5.38    1438248 4.157137e+08    Africa           Southern Africa
## 4537      6.92    2163835 1.203011e+09    Africa            Western Africa
## 4538      6.90    3714264           NA    Africa           Northern Africa
## 4539      2.06    3534804           NA    Europe           Northern Europe
## 4540      1.45     365795 8.413233e+09    Europe            Western Europe
## 4541      2.02     283672 3.122834e+09      Asia              Eastern Asia
## 4542      2.44    1974069           NA    Europe           Southern Europe
## 4543      6.14    9714342 2.819523e+09    Africa            Eastern Africa
## 4544      7.58    6892527 1.060647e+09    Africa            Eastern Africa
## 4545      3.68   15333369 3.426550e+10      Asia        South-Eastern Asia
## 4546      7.24     182864           NA      Asia             Southern Asia
## 4547      7.09    7692537 1.531426e+09    Africa            Western Africa
## 4548      2.05     334592 1.706584e+09    Europe           Southern Europe
## 4549      6.22    1718641 8.371983e+08    Africa            Western Africa
## 4550      2.27    1007503 1.783713e+09    Africa            Eastern Africa
## 4551      4.03   75721210 3.707629e+11  Americas           Central America
## 4552      5.75      83242           NA   Oceania                Micronesia
## 4553      2.62    4174621 3.355864e+09    Europe            Eastern Europe
## 4554      5.53    1871087 8.987684e+08      Asia              Eastern Asia
## 4555      2.10     609433           NA    Europe           Southern Europe
## 4556      5.12   22094516 2.221355e+10    Africa           Northern Africa
## 4557      6.42   12968335 1.897113e+09    Africa            Eastern Africa
## 4558      6.02    1112044 2.257914e+09    Africa           Southern Africa
## 4559      5.57   16337117 2.544000e+09      Asia             Southern Asia
## 4560      1.49   14396606 2.331289e+11    Europe            Western Europe
## 4561      3.21     151427 1.346169e+09   Oceania                 Melanesia
## 4562      2.12    3243078 3.684785e+10   Oceania Australia and New Zealand
## 4563      5.59    3619252 3.479589e+09  Americas           Central America
## 4564      7.77    6652110 1.233978e+09    Africa            Western Africa
## 4565      6.73   81775215 2.457158e+10    Africa            Western Africa
## 4566      1.66    4133833 1.020258e+11    Europe           Northern Europe
## 4567      8.30    1430926 9.527510e+09      Asia              Western Asia
## 4568      6.44   89183159 3.524122e+10      Asia             Southern Asia
## 4569      3.49    2170390 6.987841e+09  Americas           Central America
## 4570      5.31    3583707 2.140670e+09   Oceania                 Melanesia
## 4571      5.09    3567750 4.710487e+09  Americas             South America
## 4572      4.48   19099575 3.864373e+10  Americas             South America
## 4573      4.80   52873979 5.230483e+10      Asia        South-Eastern Asia
## 4574      2.29   37208529           NA    Europe            Eastern Europe
## 4575      1.87    9921895 6.464802e+10    Europe           Southern Europe
## 4576      2.39    3337890 3.056048e+10  Americas                 Caribbean
## 4577      5.13     341286           NA      Asia              Western Asia
## 4578      2.18   23013190 4.821287e+10    Europe            Eastern Europe
## 4579      2.05  141955200           NA    Europe            Eastern Europe
## 4580      8.36    5877556 1.490764e+09    Africa            Eastern Africa
## 4581      4.01     124468 3.179438e+08  Americas                 Caribbean
## 4582      3.44     103742 1.998404e+08  Americas                 Caribbean
## 4583      5.73     159281 1.786206e+08   Oceania                 Polynesia
## 4584      6.81   12674089 1.272626e+11      Asia              Western Asia
## 4585      7.16    6246140 2.985611e+09    Africa            Western Africa
## 4586      2.31    9192917           NA    Europe           Southern Europe
## 4587      3.31      69463 2.721054e+08    Africa            Eastern Africa
## 4588      6.95    3376371 1.020257e+09    Africa            Western Africa
## 4589      1.62    2646981 3.201306e+10      Asia        South-Eastern Asia
## 4590      2.25    5129108 2.539721e+10    Europe            Eastern Europe
## 4591      1.79    1925315           NA    Europe           Southern Europe
## 4592      6.35     262719           NA   Oceania                 Melanesia
## 4593      4.40   32204952 1.034022e+11    Africa           Southern Africa
## 4594      1.73   38588238 3.454216e+11    Europe           Southern Europe
## 4595      3.01   15952350 7.900102e+09      Asia             Southern Asia
## 4596      6.54   16559205 6.097862e+09    Africa           Northern Africa
## 4597      3.47     367611 8.502682e+08  Americas             South America
## 4598      6.46     680253 5.859166e+08    Africa           Southern Africa
## 4599      1.66    8333904 1.734690e+11    Europe           Northern Europe
## 4600      1.54    6416275 1.875669e+11    Europe            Western Europe
## 4601      6.53   10313485 1.031694e+10      Asia              Western Asia
## 4602      5.51    4400743           NA      Asia              Central Asia
## 4603      6.50   21178079           NA    Africa            Eastern Africa
## 4604      2.71   51105438 4.643817e+10      Asia        South-Eastern Asia
## 4605      5.32     636670           NA      Asia        South-Eastern Asia
## 4606      6.96    3140355 8.738235e+08    Africa            Western Africa
## 4607      5.27      93838 1.314453e+08   Oceania                 Polynesia
## 4608      3.15    1155701 6.974242e+09  Americas                 Caribbean
## 4609      4.65    7127943 1.109377e+10    Africa           Northern Africa
## 4610      3.84   48138191 1.362920e+11      Asia              Western Asia
## 4611      4.72    3151262           NA      Asia              Central Asia
## 4612      7.10   14163214 2.661403e+09    Africa            Eastern Africa
## 4613      2.04   50758512           NA    Europe            Eastern Europe
## 4614      5.14    1280278 6.033067e+10      Asia              Western Asia
## 4615      1.80   56337848 9.083843e+11    Europe           Northern Europe
## 4616      1.79  238404223 5.790542e+12  Americas          Northern America
## 4617      2.55    2992648 1.331356e+10  Americas             South America
## 4618      4.62   17712992           NA      Asia              Central Asia
## 4619      5.28     127094 1.782846e+08   Oceania                 Melanesia
## 4620      3.86   17057786 8.366300e+10  Americas             South America
## 4621      6.82    1702974           NA      Asia              Western Asia
## 4622      4.36   59653092 1.145347e+10      Asia        South-Eastern Asia
## 4623      9.22    9402070           NA      Asia              Western Asia
## 4624      6.87    6793708 2.751917e+09    Africa            Eastern Africa
## 4625      6.44    8528328 4.204993e+09    Africa            Eastern Africa
## 4626      3.23    2966799 3.134436e+09    Europe           Southern Europe
## 4627      5.98   22565908 4.464049e+10    Africa           Northern Africa
## 4628      7.21    9745209 7.218738e+09    Africa             Middle Africa
## 4629      2.09      65744 4.214264e+08  Americas                 Caribbean
## 4630      3.09   30388781 1.865619e+11  Americas             South America
## 4631      2.48    3339147           NA      Asia              Western Asia
## 4632      2.33      63028           NA  Americas                 Caribbean
## 4633      1.92   15791043 2.443802e+11   Oceania Australia and New Zealand
## 4634      1.47    7600514 1.271048e+11    Europe            Western Europe
## 4635      2.95    6674107           NA      Asia              Western Asia
## 4636      2.86     234684 4.540829e+09  Americas                 Caribbean
## 4637      4.36     419425 3.709120e+09      Asia              Western Asia
## 4638      5.52   93015182 2.455545e+10      Asia             Southern Asia
## 4639      1.83     255929 1.871718e+09  Americas                 Caribbean
## 4640      2.09    9990966           NA    Europe            Eastern Europe
## 4641      1.56    9893499 1.604301e+11    Europe            Western Europe
## 4642      5.02     164916 2.946226e+08  Americas           Central America
## 4643      6.97    4287263 1.353041e+09    Africa            Western Africa
## 4644      6.31     469010 1.501429e+08      Asia             Southern Asia
## 4645      5.13    6211549 5.199583e+09  Americas             South America
## 4646      1.95    4369527           NA    Europe           Southern Europe
## 4647      5.57    1182942 1.850201e+09    Africa           Southern Africa
## 4648      3.45  136836428 4.542467e+11  Americas             South America
## 4649      3.79     223049 4.793390e+09      Asia        South-Eastern Asia
## 4650      2.00    8960387 1.351449e+10    Europe            Eastern Europe
## 4651      7.14    7727912 1.344647e+09    Africa            Western Africa
## 4652      7.52    4774258 8.492344e+08    Africa            Eastern Africa
## 4653      6.21    7743065           NA      Asia        South-Eastern Asia
## 4654      6.70   10381098 9.903825e+09    Africa             Middle Africa
## 4655      1.61   25848173 4.717224e+11  Americas          Northern America
## 4656      5.88     313976 2.313515e+08    Africa            Western Africa
## 4657      5.94    2627424 8.151416e+08    Africa             Middle Africa
## 4658      7.12    5092650 1.017552e+09    Africa             Middle Africa
## 4659      2.66   12108576 2.921349e+10  Americas             South America
## 4660      2.65 1052622410 3.044610e+11      Asia              Eastern Asia
## 4661      3.43   31011686 6.065329e+10  Americas             South America
## 4662      6.58     357729 1.672531e+08    Africa            Eastern Africa
## 4663      6.85   29985665 7.686243e+09    Africa             Middle Africa
## 4664      5.77    2083648 2.840863e+09    Africa             Middle Africa
## 4665      3.46    2730231 7.474782e+09  Americas           Central America
## 4666      7.01   10158033 7.830669e+09    Africa            Western Africa
## 4667      1.92    4716117           NA    Europe           Southern Europe
## 4668      1.84   10082990 3.565132e+10  Americas                 Caribbean
## 4669      2.46     703693 4.428954e+09      Asia              Western Asia
## 4670      1.97   10315676           NA    Europe            Eastern Europe
## 4671      1.45    5113408 1.153450e+11    Europe           Northern Europe
## 4672      6.22     423470           NA    Africa            Eastern Africa
## 4673      3.88    6488857 1.158374e+10  Americas                 Caribbean
## 4674      4.22    9045977 1.164983e+10  Americas             South America
## 4675      5.05   49373806 5.333680e+10    Africa           Northern Africa
## 4676      4.49    4920932 7.560289e+09  Americas           Central America
## 4677      5.85     314407 1.942937e+08    Africa             Middle Africa
## 4678      6.57    2756493           NA    Africa            Eastern Africa
## 4679      2.19    1522477           NA    Europe           Northern Europe
## 4680      7.44   40775997 4.853203e+09    Africa            Eastern Africa
## 4681      3.63     711663 1.156376e+09   Oceania                 Melanesia
## 4682      1.64    4902219 8.415423e+10    Europe           Northern Europe
## 4683      1.84   55379923 9.316729e+11    Europe            Western Europe
## 4684      3.74     175208 2.186297e+09   Oceania                 Polynesia
## 4685      5.69     830091 4.059059e+09    Africa             Middle Africa
## 4686      6.22     732092 4.658104e+08    Africa            Western Africa
## 4687      2.27    5287328 1.050014e+10      Asia              Western Asia
## 4688      1.45   77570009 1.323591e+12    Europe            Western Europe
## 4689      6.13   12716238 2.583665e+09    Africa            Western Africa
## 4690      1.73    9907831 9.280935e+10    Europe           Southern Europe
## 4691      2.24      53189 7.972915e+08  Americas          Northern America
## 4692      4.23      99907 2.489283e+08  Americas                 Caribbean
## 4693      5.91    8117499 1.116311e+10  Americas           Central America
## 4694      6.64    5078689           NA    Africa            Western Africa
## 4695      6.74     944941 1.548500e+08    Africa            Western Africa
## 4696      2.60     765043 4.981633e+08  Americas             South America
## 4697      6.03    6384196           NA  Americas                 Caribbean
## 4698      5.68    4237436 4.407864e+09  Americas           Central America
## 4699      1.50    5414790 7.935766e+10      Asia              Eastern Asia
## 4700      1.83   10572975 4.405498e+10    Europe            Eastern Europe
## 4701      2.15     241411 5.785493e+09    Europe           Northern Europe
## 4702      4.28  782085127 2.070746e+11      Asia             Southern Asia
## 4703      3.75  165012195 7.735343e+10      Asia        South-Eastern Asia
## 4704      6.22   47290793 6.939679e+10      Asia             Southern Asia
## 4705      6.22   15576396           NA      Asia              Western Asia
## 4706      2.45    3560225           NA    Europe           Northern Europe
## 4707      3.09    4082781 5.766845e+10      Asia              Western Asia
## 4708      1.41   56910888 8.073996e+11    Europe           Southern Europe
## 4709      3.31    2312337 5.918249e+09  Americas                 Caribbean
## 4710      1.72  119988663 3.314639e+12      Asia              Eastern Asia
## 4711      6.58    2782885 5.430273e+09      Asia              Western Asia
## 4712      3.02   15780002           NA      Asia              Central Asia
## 4713      6.92   19660713 8.015985e+09    Africa            Eastern Africa
## 4714      4.86      64006 4.429520e+07   Oceania                Micronesia
## 4715      1.86   40501917 1.865696e+11      Asia              Eastern Asia
## 4716      4.09    1735320           NA      Asia              Western Asia
## 4717      4.09    4013498           NA      Asia              Central Asia
## 4718      6.36    3680145 7.702367e+08      Asia        South-Eastern Asia
## 4719      2.13    2582079 9.509215e+09    Europe           Northern Europe
## 4720      3.48    2676593           NA      Asia              Western Asia
## 4721      5.31    1467856 4.364786e+08    Africa           Southern Africa
## 4722      6.88    2197442 1.192866e+09    Africa            Western Africa
## 4723      6.58    3840635           NA    Africa           Northern Africa
## 4724      2.06    3563741           NA    Europe           Northern Europe
## 4725      1.45     366884 8.648106e+09    Europe            Western Europe
## 4726      2.04     296222 3.144694e+09      Asia              Eastern Asia
## 4727      2.40    1981532           NA    Europe           Southern Europe
## 4728      6.15    9981113 2.852113e+09    Africa            Eastern Africa
## 4729      7.55    7205635 1.109129e+09    Africa            Eastern Africa
## 4730      3.66   15764340 3.388096e+10      Asia        South-Eastern Asia
## 4731      7.18     189551           NA      Asia             Southern Asia
## 4732      7.09    7831891 1.357512e+09    Africa            Western Africa
## 4733      2.06     338348 1.750704e+09    Europe           Southern Europe
## 4734      6.18    1766855 8.622703e+08    Africa            Western Africa
## 4735      2.25    1015763 1.907761e+09    Africa            Eastern Africa
## 4736      3.90   77322643 3.803782e+11  Americas           Central America
## 4737      5.60      85689           NA   Oceania                Micronesia
## 4738      2.64    4214911 3.178309e+09    Europe            Eastern Europe
## 4739      5.35    1921885 9.501139e+08      Asia              Eastern Asia
## 4740      2.06     614011           NA    Europe           Southern Europe
## 4741      4.94   22596133 2.361859e+10    Africa           Northern Africa
## 4742      6.40   13102982 1.916084e+09    Africa            Eastern Africa
## 4743      5.89    1149389 2.270269e+09    Africa           Southern Africa
## 4744      5.51   16714335 2.700326e+09      Asia             Southern Asia
## 4745      1.51   14471591 2.391440e+11    Europe            Western Europe
## 4746      3.14     153929 1.406747e+09   Oceania                 Melanesia
## 4747      2.14    3268192 3.713562e+10   Oceania Australia and New Zealand
## 4748      5.43    3709091 3.337558e+09  Americas           Central America
## 4749      7.78    6838170 1.329272e+09    Africa            Western Africa
## 4750      6.70   83901570 2.695620e+10    Africa            Western Africa
## 4751      1.68    4148355 1.074883e+11    Europe           Northern Europe
## 4752      8.22    1498416 1.086205e+10      Asia              Western Asia
## 4753      6.41   92165065 3.791678e+10      Asia             Southern Asia
## 4754      3.41    2219276 7.333197e+09  Americas           Central America
## 4755      5.21    3677854 2.226300e+09   Oceania                 Melanesia
## 4756      5.02    3671826 4.897781e+09  Americas             South America
## 4757      4.36   19544950 3.972575e+10  Americas             South America
## 4758      4.71   54323651 4.848312e+10      Asia        South-Eastern Asia
## 4759      2.27   37486105           NA    Europe            Eastern Europe
## 4760      1.78    9929014 6.646297e+10    Europe           Southern Europe
## 4761      2.34    3369714 3.118957e+10  Americas                 Caribbean
## 4762      4.93     371071           NA      Asia              Western Asia
## 4763      2.27   23103637 4.816502e+10    Europe            Eastern Europe
## 4764      2.05  142975753           NA    Europe            Eastern Europe
## 4765      8.28    6117966 1.556399e+09    Africa            Eastern Africa
## 4766      3.89     126416 2.994785e+08  Americas                 Caribbean
## 4767      3.33     104477 2.120639e+08  Americas                 Caribbean
## 4768      5.62     160030 1.856216e+08   Oceania                 Polynesia
## 4769      6.66   13361284 1.217595e+11      Asia              Western Asia
## 4770      7.09    6438024 3.083643e+09    Africa            Western Africa
## 4771      2.29    9253401           NA    Europe           Southern Europe
## 4772      3.19      69841 3.023791e+08    Africa            Eastern Africa
## 4773      6.89    3466044 9.660676e+08    Africa            Western Africa
## 4774      1.61    2708634 3.180499e+10      Asia        South-Eastern Asia
## 4775      2.22    5157959 2.628569e+10    Europe            Eastern Europe
## 4776      1.74    1945136           NA    Europe           Southern Europe
## 4777      6.28     270809           NA   Oceania                 Melanesia
## 4778      4.29   32983013 1.021496e+11    Africa           Southern Africa
## 4779      1.63   38734330 3.534403e+11    Europe           Southern Europe
## 4780      2.90   16180776 8.295060e+09      Asia             Southern Asia
## 4781      6.47   17097619 5.714852e+09    Africa           Northern Africa
## 4782      3.34     371469 8.361724e+08  Americas             South America
## 4783      6.38     705492 6.081370e+08    Africa           Southern Africa
## 4784      1.74    8350814 1.772674e+11    Europe           Northern Europe
## 4785      1.54    6455680 1.944573e+11    Europe            Western Europe
## 4786      6.36   10667245 1.094783e+10      Asia              Western Asia
## 4787      5.49    4540688 2.087356e+09      Asia              Central Asia
## 4788      6.47   21842087           NA    Africa            Eastern Africa
## 4789      2.57   52041468 4.859627e+10      Asia        South-Eastern Asia
## 4790      5.34     657018           NA      Asia        South-Eastern Asia
## 4791      6.87    3252995 9.223692e+08    Africa            Western Africa
## 4792      5.13      93953 1.400661e+08   Oceania                 Polynesia
## 4793      3.06    1170935 6.686948e+09  Americas                 Caribbean
## 4794      4.45    7321877 1.172041e+10    Africa           Northern Africa
## 4795      3.70   49178079 1.420726e+11      Asia              Western Asia
## 4796      4.67    3229499           NA      Asia              Central Asia
## 4797      7.10   14631089 2.573407e+09    Africa            Eastern Africa
## 4798      2.05   50920778           NA    Europe            Eastern Europe
## 4799      5.07    1350433 5.816209e+10      Asia              Western Asia
## 4800      1.81   56415196 9.413018e+11    Europe           Northern Europe
## 4801      1.84  240691557 6.028651e+12  Americas          Northern America
## 4802      2.53    3011907 1.350881e+10  Americas             South America
## 4803      4.54   18174143           NA      Asia              Central Asia
## 4804      5.21     130028 1.800389e+08   Oceania                 Melanesia
## 4805      3.79   17508059 8.382472e+10  Americas             South America
## 4806      6.70    1758788           NA      Asia              Western Asia
## 4807      4.21   61049370 1.188938e+10      Asia        South-Eastern Asia
## 4808      9.19    9774242           NA      Asia              Western Asia
## 4809      6.80    7017292 2.796369e+09    Africa            Eastern Africa
## 4810      6.22    8862601 4.497004e+09    Africa            Eastern Africa
## 4811      3.18    3041003 3.311132e+09    Europe           Southern Europe
## 4812      5.75   23241276 4.481905e+10    Africa           Northern Africa
## 4813      7.21   10023700 7.420863e+09    Africa             Middle Africa
## 4814      2.08      64605 4.750294e+08  Americas                 Caribbean
## 4815      3.07   30857242 2.012551e+11  Americas             South America
## 4816      2.52    3396511           NA      Asia              Western Asia
## 4817      2.32      62644           NA  Americas                 Caribbean
## 4818      1.87   16047026 2.555033e+11   Oceania Australia and New Zealand
## 4819      1.45    7610435 1.300493e+11    Europe            Western Europe
## 4820      2.95    6779970           NA      Asia              Western Asia
## 4821      2.79     239132 4.622427e+09  Americas                 Caribbean
## 4822      4.25     433487 3.752999e+09      Asia              Western Asia
## 4823      5.33   95550798 2.559870e+10      Asia             Southern Asia
## 4824      1.81     256738 2.048243e+09  Americas                 Caribbean
## 4825      2.08   10053975           NA    Europe            Eastern Europe
## 4826      1.56    9903895 1.633544e+11    Europe            Western Europe
## 4827      4.89     169570 3.080994e+08  Americas           Central America
## 4828      6.94    4414450 1.382418e+09    Africa            Western Africa
## 4829      6.23     484151 1.620853e+08      Asia             Southern Asia
## 4830      5.07    6337893 5.065752e+09  Americas             South America
## 4831      1.93    4428460           NA    Europe           Southern Europe
## 4832      5.39    1221668 2.001417e+09    Africa           Southern Africa
## 4833      3.31  139664639 4.905332e+11  Americas             South America
## 4834      3.76     229418 4.663227e+09      Asia        South-Eastern Asia
## 4835      1.98    8956741 1.408313e+10    Europe            Eastern Europe
## 4836      7.12    7930690 1.451619e+09    Africa            Western Africa
## 4837      7.55    4936429 8.768360e+08    Africa            Eastern Africa
## 4838      6.16    7990133           NA      Asia        South-Eastern Asia
## 4839      6.67   10701458 1.057448e+10    Africa             Middle Africa
## 4840      1.59   26181342 4.831418e+11  Americas          Northern America
## 4841      5.78     319161 2.379946e+08    Africa            Western Africa
## 4842      5.93    2691312 8.443071e+08    Africa             Middle Africa
## 4843      7.16    5244158 9.760188e+08    Africa             Middle Africa
## 4844      2.66   12304203 3.084838e+10  Americas             South America
## 4845      2.68 1071834975 3.312536e+11      Asia              Eastern Asia
## 4846      3.35   31669780 6.419441e+10  Americas             South America
## 4847      6.36     368443 1.703761e+08    Africa            Eastern Africa
## 4848      6.90   30829103 8.048820e+09    Africa             Middle Africa
## 4849      5.68    2142529 2.645937e+09    Africa             Middle Africa
## 4850      3.43    2800986 7.907195e+09  Americas           Central America
## 4851      6.88   10548148 8.085898e+09    Africa            Western Africa
## 4852      1.89    4737949           NA    Europe           Southern Europe
## 4853      1.84   10167998 3.568530e+10  Americas                 Caribbean
## 4854      2.46     712340 4.593001e+09      Asia              Western Asia
## 4855      1.95   10311350           NA    Europe            Eastern Europe
## 4856      1.48    5113767 1.210537e+11    Europe           Northern Europe
## 4857      6.21     451068           NA    Africa            Eastern Africa
## 4858      3.78    6626544 1.199172e+10  Americas                 Caribbean
## 4859      4.13    9272905 1.212407e+10  Americas             South America
## 4860      4.95   50748187 5.474840e+10    Africa           Northern Africa
## 4861      4.37    4986528 7.574608e+09  Americas           Central America
## 4862      5.87     330247 1.897656e+08    Africa             Middle Africa
## 4863      6.55    2843141           NA    Africa            Eastern Africa
## 4864      2.19    1536112           NA    Europe           Northern Europe
## 4865      7.42   42097111 5.322089e+09    Africa            Eastern Africa
## 4866      3.57     718548 1.245994e+09   Oceania                 Melanesia
## 4867      1.60    4921293 8.637737e+10    Europe           Northern Europe
## 4868      1.83   55686610 9.526901e+11    Europe            Western Europe
## 4869      3.70     180069 2.369946e+09   Oceania                 Polynesia
## 4870      5.65     853039 4.026441e+09    Africa             Middle Africa
## 4871      6.19     766598 4.848670e+08    Africa            Western Africa
## 4872      2.27    5340061 9.641725e+09      Asia              Western Asia
## 4873      1.44   77671877 1.353866e+12    Europe            Western Europe
## 4874      6.04   13103975 2.717993e+09    Africa            Western Africa
## 4875      1.65    9945576 9.328979e+10    Europe           Southern Europe
## 4876      2.04      53799 8.538779e+08  Americas          Northern America
## 4877      4.20     100146 2.694638e+08  Americas                 Caribbean
## 4878      5.84    8320498 1.117908e+10  Americas           Central America
## 4879      6.65    5223553 1.752616e+09    Africa            Western Africa
## 4880      6.74     966039 1.536208e+08    Africa            Western Africa
## 4881      2.53     755598 4.936768e+08  Americas             South America
## 4882      5.92    6527545           NA  Americas                 Caribbean
## 4883      5.55    4366401 4.439719e+09  Americas           Central America
## 4884      1.44    5486965 8.816464e+10      Asia              Eastern Asia
## 4885      1.83   10526561 4.473120e+10    Europe            Eastern Europe
## 4886      2.14     244145 6.148275e+09    Europe           Northern Europe
## 4887      4.20  799607235 2.169657e+11      Asia             Southern Asia
## 4888      3.61  168402027 8.196719e+10      Asia        South-Eastern Asia
## 4889      6.02   49205577 6.303255e+10      Asia             Southern Asia
## 4890      6.16   15937864           NA      Asia              Western Asia
## 4891      2.34    3566327           NA    Europe           Northern Europe
## 4892      3.07    4148764 6.043159e+10      Asia              Western Asia
## 4893      1.38   56956635 8.304910e+11    Europe           Southern Europe
## 4894      3.22    2333427 6.029665e+09  Americas                 Caribbean
## 4895      1.70  120551455 3.408479e+12      Asia              Eastern Asia
## 4896      6.37    2884065 5.811161e+09      Asia              Western Asia
## 4897      3.03   15972360           NA      Asia              Central Asia
## 4898      6.77   20393724 8.591337e+09    Africa            Eastern Africa
## 4899      4.80      65519 4.498470e+07   Oceania                Micronesia
## 4900      1.75   41059473 2.063812e+11      Asia              Eastern Asia
## 4901      3.70    1823201           NA      Asia              Western Asia
## 4902      4.07    4095873 1.618705e+09      Asia              Central Asia
## 4903      6.34    3785230 8.078637e+08      Asia        South-Eastern Asia
## 4904      2.14    2604484 9.956942e+09    Europe           Northern Europe
## 4905      3.38    2677290           NA      Asia              Western Asia
## 4906      5.24    1495101 4.389081e+08    Africa           Southern Africa
## 4907      6.82    2206867 1.172843e+09    Africa            Western Africa
## 4908      6.25    3961363           NA    Africa           Northern Africa
## 4909      2.06    3595362           NA    Europe           Northern Europe
## 4910      1.46     368662 9.511527e+09    Europe            Western Europe
## 4911      2.02     309226 3.355389e+09      Asia              Eastern Asia
## 4912      2.37    1988401           NA    Europe           Southern Europe
## 4913      6.18   10264368 2.907989e+09    Africa            Eastern Africa
## 4914      7.49    7617137 1.106747e+09    Africa            Eastern Africa
## 4915      3.63   16221767 3.427144e+10      Asia        South-Eastern Asia
## 4916      7.06     196283           NA      Asia             Southern Asia
## 4917      7.10    7957390 1.472022e+09    Africa            Western Africa
## 4918      2.06     341978 1.818722e+09    Europe           Southern Europe
## 4919      6.14    1815692 9.115368e+08    Africa            Western Africa
## 4920      2.26    1023278 2.093616e+09    Africa            Eastern Africa
## 4921      3.78   78939441 3.660991e+11  Americas           Central America
## 4922      5.45      87948 1.633958e+08   Oceania                Micronesia
## 4923      2.65    4253162 3.429669e+09    Europe            Eastern Europe
## 4924      5.14    1976311 1.039187e+09      Asia              Eastern Asia
## 4925      2.02     616357           NA    Europe           Southern Europe
## 4926      4.75   23084731 2.557877e+10    Africa           Northern Africa
## 4927      6.37   13155271 1.872014e+09    Africa            Eastern Africa
## 4928      5.76    1194769 2.377200e+09    Africa           Southern Africa
## 4929      5.44   17091959 2.823614e+09      Asia             Southern Asia
## 4930      1.55   14551065 2.458089e+11    Europe            Western Europe
## 4931      3.09     156502 1.392679e+09   Oceania                 Melanesia
## 4932      2.16    3290132 3.797448e+10   Oceania Australia and New Zealand
## 4933      5.27    3796914 3.303604e+09  Americas           Central America
## 4934      7.77    7031675 1.413814e+09    Africa            Western Africa
## 4935      6.66   86118043 2.763376e+10    Africa            Western Africa
## 4936      1.71    4164166 1.118282e+11    Europe           Northern Europe
## 4937      8.10    1561493 1.107952e+10      Asia              Western Asia
## 4938      6.37   95207133 4.000282e+10      Asia             Southern Asia
## 4939      3.33    2268619 7.594830e+09  Americas           Central America
## 4940      5.11    3771578 2.330782e+09   Oceania                 Melanesia
## 4941      4.93    3777764 4.897781e+09  Americas             South America
## 4942      4.25   19996250 4.369833e+10  Americas             South America
## 4943      4.63   55803915 5.013968e+10      Asia        South-Eastern Asia
## 4944      2.23   37703942           NA    Europe            Eastern Europe
## 4945      1.71    9925410 6.921517e+10    Europe           Southern Europe
## 4946      2.31    3400048 3.373633e+10  Americas                 Caribbean
## 4947      4.72     398326           NA      Asia              Western Asia
## 4948      2.37   23205267 4.932136e+10    Europe            Eastern Europe
## 4949      2.18  144016095           NA    Europe            Eastern Europe
## 4950      8.17    6410594 1.641567e+09    Africa            Eastern Africa
## 4951      3.78     128620 3.440326e+08  Americas                 Caribbean
## 4952      3.23     105197 2.261934e+08  Americas                 Caribbean
## 4953      5.51     160591 1.958393e+08   Oceania                 Polynesia
## 4954      6.50   14016569 1.279575e+11      Asia              Western Asia
## 4955      7.01    6638186 3.179647e+09    Africa            Western Africa
## 4956      2.27    9306283           NA    Europe           Southern Europe
## 4957      3.08      70011 3.018445e+08    Africa            Eastern Africa
## 4958      6.82    3569102 9.780087e+08    Africa            Western Africa
## 4959      1.43    2766755 3.221441e+10      Asia        South-Eastern Asia
## 4960      2.20    5185157 2.738093e+10    Europe            Eastern Europe
## 4961      1.68    1962890           NA    Europe           Southern Europe
## 4962      6.21     278846           NA   Oceania                 Melanesia
## 4963      4.18   33733547 1.021678e+11    Africa           Southern Africa
## 4964      1.55   38854360 3.649389e+11    Europe           Southern Europe
## 4965      2.80   16413729 8.656355e+09      Asia             Southern Asia
## 4966      6.40   17618852 6.024243e+09    Africa           Northern Africa
## 4967      3.20     376973 8.083896e+08  Americas             South America
## 4968      6.29     734790 6.827218e+08    Africa           Southern Africa
## 4969      1.80    8377863 1.823391e+11    Europe           Northern Europe
## 4970      1.54    6493442 1.980715e+11    Europe            Western Europe
## 4971      6.17   11020718 1.040638e+10      Asia              Western Asia
## 4972      5.45    4690913 2.160413e+09      Asia              Central Asia
## 4973      6.42   22516809           NA    Africa            Eastern Africa
## 4974      2.45   53002775 5.128550e+10      Asia        South-Eastern Asia
## 4975      5.31     674128           NA      Asia        South-Eastern Asia
## 4976      6.78    3363448 9.370026e+08    Africa            Western Africa
## 4977      4.99      94147 1.430336e+08   Oceania                 Polynesia
## 4978      2.95    1184053 6.467667e+09  Americas                 Caribbean
## 4979      4.27    7509750 1.155082e+10    Africa           Northern Africa
## 4980      3.56   50187091 1.520348e+11      Asia              Western Asia
## 4981      4.62    3310059           NA      Asia              Central Asia
## 4982      7.10   15133740 2.583446e+09    Africa            Eastern Africa
## 4983      2.05   51063970           NA    Europe            Eastern Europe
## 4984      4.97    1430548 4.946213e+10      Asia              Western Asia
## 4985      1.82   56519444 9.790885e+11    Europe           Northern Europe
## 4986      1.84  243032017 6.235265e+12  Americas          Northern America
## 4987      2.52    3031032 1.469891e+10  Americas             South America
## 4988      4.47   18640558           NA      Asia              Central Asia
## 4989      5.14     133040 1.798010e+08   Oceania                 Melanesia
## 4990      3.73   17968530 8.928200e+10  Americas             South America
## 4991      6.60    1817336           NA      Asia              Western Asia
## 4992      4.06   62459557 1.222101e+10      Asia        South-Eastern Asia
## 4993      9.12   10153613           NA      Asia              Western Asia
## 4994      6.74    7242496 2.816611e+09    Africa            Eastern Africa
## 4995      6.00    9198874 4.591397e+09    Africa            Eastern Africa
## 4996      3.13    3121336 3.285046e+09    Europe           Southern Europe
## 4997      5.51   23917889 4.450532e+10    Africa           Northern Africa
## 4998      7.20   10285712 8.007111e+09    Africa             Middle Africa
## 4999      2.07      63484 5.142819e+08  Americas                 Caribbean
## 5000      3.06   31326473 2.071116e+11  Americas             South America
## 5001      2.55    3457054           NA      Asia              Western Asia
## 5002      2.31      61835 8.035323e+08  Americas                 Caribbean
## 5003      1.85   16314778 2.620274e+11   Oceania Australia and New Zealand
## 5004      1.43    7623700 1.318003e+11    Europe            Western Europe
## 5005      2.95    6886428           NA      Asia              Western Asia
## 5006      2.73     243391 4.760385e+09  Americas                 Caribbean
## 5007      4.13     448994 4.143273e+09      Asia              Western Asia
## 5008      5.13   98149262 2.655412e+10      Asia             Southern Asia
## 5009      1.78     257609 2.069150e+09  Americas                 Caribbean
## 5010      2.05   10113451           NA    Europe            Eastern Europe
## 5011      1.56    9916261 1.671224e+11    Europe            Western Europe
## 5012      4.77     174326 3.426552e+08  Americas           Central America
## 5013      6.90    4546136 1.361682e+09    Africa            Western Africa
## 5014      6.13     500952 1.948732e+08      Asia             Southern Asia
## 5015      5.03    6464736 5.190546e+09  Americas             South America
## 5016      1.89    4491745           NA    Europe           Southern Europe
## 5017      5.21    1260720 2.239224e+09    Africa           Southern Africa
## 5018      3.17  142437479 5.081906e+11  Americas             South America
## 5019      3.72     235980 4.756918e+09      Asia        South-Eastern Asia
## 5020      1.94    8943721 1.493579e+10    Europe            Eastern Europe
## 5021      7.09    8140076 1.448188e+09    Africa            Western Africa
## 5022      7.57    5108581 9.250891e+08    Africa            Eastern Africa
## 5023      6.07    8228268           NA      Asia        South-Eastern Asia
## 5024      6.63   11031515 1.034748e+10    Africa             Middle Africa
## 5025      1.58   26541981 5.036909e+11  Americas          Northern America
## 5026      5.68     323972 2.482500e+08    Africa            Western Africa
## 5027      5.90    2751163 8.026065e+08    Africa             Middle Africa
## 5028      7.20    5409275 9.527036e+08    Africa             Middle Africa
## 5029      2.65   12507488 3.288258e+10  Americas             South America
## 5030      2.68 1092646739 3.696790e+11      Asia              Eastern Asia
## 5031      3.28   32324326 6.764262e+10  Americas             South America
## 5032      6.14     379589 1.731668e+08    Africa            Eastern Africa
## 5033      6.96   31721541 8.264177e+09    Africa             Middle Africa
## 5034      5.59    2202106 2.650948e+09    Africa             Middle Africa
## 5035      3.38    2872214 8.450849e+09  Americas           Central America
## 5036      6.75   10939987 8.057680e+09    Africa            Western Africa
## 5037      1.84    4758152           NA    Europe           Southern Europe
## 5038      1.83   10269276 3.482807e+10  Americas                 Caribbean
## 5039      2.45     723380 4.917507e+09      Asia              Western Asia
## 5040      1.93   10311293           NA    Europe            Eastern Europe
## 5041      1.50    5116351 1.214046e+11    Europe           Northern Europe
## 5042      6.19     485565           NA    Africa            Eastern Africa
## 5043      3.70    6764623 1.320497e+10  Americas                 Caribbean
## 5044      4.04    9504132 1.186394e+10  Americas             South America
## 5045      4.83   52173840 5.612774e+10    Africa           Northern Africa
## 5046      4.26    5051885 7.765003e+09  Americas           Central America
## 5047      5.88     343290 1.981850e+08    Africa             Middle Africa
## 5048      6.54    2933871           NA    Africa            Eastern Africa
## 5049      2.17    1551288           NA    Europe           Northern Europe
## 5050      7.39   43470219 6.059710e+09    Africa            Eastern Africa
## 5051      3.51     721725 1.163571e+09   Oceania                 Melanesia
## 5052      1.59    4937259 8.939193e+10    Europe           Northern Europe
## 5053      1.81   56005443 9.754439e+11    Europe            Western Europe
## 5054      3.65     184958 2.538213e+09   Oceania                 Polynesia
## 5055      5.61     876877 3.336065e+09    Africa             Middle Africa
## 5056      6.16     804134 4.967673e+08    Africa            Western Africa
## 5057      2.26    5394998 9.765336e+09      Asia              Western Asia
## 5058      1.43   77864381 1.372849e+12    Europe            Western Europe
## 5059      5.94   13480381 2.848318e+09    Africa            Western Africa
## 5060      1.58    9979755 9.118250e+10    Europe           Southern Europe
## 5061      2.08      54371 9.009767e+08  Americas          Northern America
## 5062      4.15      99381 2.995085e+08  Americas                 Caribbean
## 5063      5.76    8523785 1.157526e+10  Americas           Central America
## 5064      6.64    5375058 1.810452e+09    Africa            Western Africa
## 5065      6.73     987718 1.580758e+08    Africa            Western Africa
## 5066      2.50     745149 4.981169e+08  Americas             South America
## 5067      5.80    6670566           NA  Americas                 Caribbean
## 5068      5.44    4497875 4.707496e+09  Americas           Central America
## 5069      1.39    5564596 9.998843e+10      Asia              Eastern Asia
## 5070      1.84   10482364 4.654337e+10    Europe            Eastern Europe
## 5071      2.13     246867 6.673703e+09    Europe           Northern Europe
## 5072      4.13  817232241 2.255691e+11      Asia             Southern Asia
## 5073      3.47  171728916 8.631145e+10      Asia        South-Eastern Asia
## 5074      5.76   51152122 6.214776e+10      Asia             Southern Asia
## 5075      6.11   16293719           NA      Asia              Western Asia
## 5076      2.23    3566416           NA    Europe           Northern Europe
## 5077      3.06    4215756 6.477523e+10      Asia              Western Asia
## 5078      1.35   56980621 8.569999e+11    Europe           Southern Europe
## 5079      3.14    2348572 6.503015e+09  Americas                 Caribbean
## 5080      1.67  121021830 3.548480e+12      Asia              Eastern Asia
## 5081      6.16    2982349 5.979429e+09      Asia              Western Asia
## 5082      3.02   16167926           NA      Asia              Central Asia
## 5083      6.60   21140344 9.101414e+09    Africa            Eastern Africa
## 5084      4.75      67262 4.360688e+07   Oceania                Micronesia
## 5085      1.67   41588374 2.292980e+11      Asia              Eastern Asia
## 5086      3.31    1917950           NA      Asia              Western Asia
## 5087      4.04    4179484 1.672121e+09      Asia              Central Asia
## 5088      6.31    3895066 7.963453e+08      Asia        South-Eastern Asia
## 5089      2.12    2629831 1.018976e+10    Europe           Northern Europe
## 5090      3.28    2672182           NA      Asia              Western Asia
## 5091      5.17    1520244 4.075463e+08    Africa           Southern Africa
## 5092      6.75    2196204 1.161096e+09    Africa            Western Africa
## 5093      5.91    4076888           NA    Africa           Northern Africa
## 5094      2.05    3628532           NA    Europe           Northern Europe
## 5095      1.47     371079 9.887326e+09    Europe            Western Europe
## 5096      1.97     322655 3.835209e+09      Asia              Eastern Asia
## 5097      2.34    1994368           NA    Europe           Southern Europe
## 5098      6.23   10563491 2.942247e+09    Africa            Eastern Africa
## 5099      7.40    8108484 1.124734e+09    Africa            Eastern Africa
## 5100      3.60   16703500 3.611820e+10      Asia        South-Eastern Asia
## 5101      6.89     203059           NA      Asia             Southern Asia
## 5102      7.09    8073178 1.464394e+09    Africa            Western Africa
## 5103      2.06     345490 1.893481e+09    Europe           Southern Europe
## 5104      6.10    1865356 9.288595e+08    Africa            Western Africa
## 5105      2.27    1030175 2.279760e+09    Africa            Eastern Africa
## 5106      3.67   80571067 3.728930e+11  Americas           Central America
## 5107      5.30      90024 1.653561e+08   Oceania                Micronesia
## 5108      2.63    4289099 3.470901e+09    Europe            Eastern Europe
## 5109      4.91    2033345 1.075129e+09      Asia              Eastern Asia
## 5110      1.98     616796           NA    Europe           Southern Europe
## 5111      4.57   23560825 2.492787e+10    Africa           Northern Africa
## 5112      6.35   13142516 2.147200e+09    Africa            Eastern Africa
## 5113      5.63    1247186 2.460701e+09    Africa           Southern Africa
## 5114      5.38   17472138 2.871492e+09      Asia             Southern Asia
## 5115      1.56   14634787 2.505561e+11    Europe            Western Europe
## 5116      3.05     159180 1.472062e+09   Oceania                 Melanesia
## 5117      2.24    3310408 3.855109e+10   Oceania Australia and New Zealand
## 5118      5.12    3882940 3.280269e+09  Americas           Central America
## 5119      7.77    7233482 1.414868e+09    Africa            Western Africa
## 5120      6.63   88412917 2.744023e+10    Africa            Western Africa
## 5121      1.75    4181326 1.138188e+11    Europe           Northern Europe
## 5122      7.93    1620573 1.069830e+10      Asia              Western Asia
## 5123      6.31   98301647 4.258394e+10      Asia             Southern Asia
## 5124      3.26    2318444 7.457435e+09  Americas           Central America
## 5125      5.02    3865402 2.395356e+09   Oceania                 Melanesia
## 5126      4.84    3885433 5.110006e+09  Americas             South America
## 5127      4.14   20451712 4.719419e+10  Americas             South America
## 5128      4.55   57312794 5.230152e+10      Asia        South-Eastern Asia
## 5129      2.19   37867481           NA    Europe            Eastern Europe
## 5130      1.65    9912208 7.363207e+10    Europe           Southern Europe
## 5131      2.28    3428846 3.539591e+10  Americas                 Caribbean
## 5132      4.52     423327           NA      Asia              Western Asia
## 5133      2.41   23312045 4.971631e+10    Europe            Eastern Europe
## 5134      2.23  145056221           NA    Europe            Eastern Europe
## 5135      8.00    6742390 1.641173e+09    Africa            Eastern Africa
## 5136      3.68     131032 3.506898e+08  Americas                 Caribbean
## 5137      3.14     105892 2.364616e+08  Americas                 Caribbean
## 5138      5.40     161014 1.967854e+08   Oceania                 Polynesia
## 5139      6.33   14642354 1.228599e+11      Asia              Western Asia
## 5140      6.93    6846556 3.373426e+09    Africa            Western Africa
## 5141      2.24    9351938           NA    Europe           Southern Europe
## 5142      2.99      70010 3.151381e+08    Africa            Eastern Africa
## 5143      6.75    3681945 1.048731e+09    Africa            Western Africa
## 5144      1.62    2822828 3.568461e+10      Asia        South-Eastern Asia
## 5145      2.17    5210451 2.805447e+10    Europe            Eastern Europe
## 5146      1.63    1978541           NA    Europe           Southern Europe
## 5147      6.14     286868           NA   Oceania                 Melanesia
## 5148      4.05   34463077 1.043141e+11    Africa           Southern Africa
## 5149      1.49   38950965 3.851825e+11    Europe           Southern Europe
## 5150      2.70   16648992 8.805730e+09      Asia             Southern Asia
## 5151      6.34   18130501 6.880944e+09    Africa           Northern Africa
## 5152      3.06     383916 6.997315e+08  Americas             South America
## 5153      6.18     767417 7.824442e+08    Africa           Southern Africa
## 5154      1.84    8413658 1.886428e+11    Europe           Northern Europe
## 5155      1.55    6531160 2.012119e+11    Europe            Western Europe
## 5156      5.96   11374772 1.060489e+10      Asia              Western Asia
## 5157      5.41    4849253 2.134489e+09      Asia              Central Asia
## 5158      6.38   23204186           NA    Africa            Eastern Africa
## 5159      2.35   53979503 5.616734e+10      Asia        South-Eastern Asia
## 5160      5.27     689170           NA      Asia        South-Eastern Asia
## 5161      6.68    3472459 9.417829e+08    Africa            Western Africa
## 5162      4.86      94399 1.473041e+08   Oceania                 Polynesia
## 5163      2.83    1195243 6.172490e+09  Americas                 Caribbean
## 5164      4.08    7692246 1.232488e+10    Africa           Northern Africa
## 5165      3.43   51168841 1.664561e+11      Asia              Western Asia
## 5166      4.57    3392823 3.568056e+09      Asia              Central Asia
## 5167      7.10   15668278 2.685799e+09    Africa            Eastern Africa
## 5168      2.03   51185554 7.211279e+10    Europe            Eastern Europe
## 5169      4.86    1518991 5.113493e+10      Asia              Western Asia
## 5170      1.83   56649375 1.023756e+12    Europe           Northern Europe
## 5171      1.87  245425409 6.432743e+12  Americas          Northern America
## 5172      2.52    3049962 1.587381e+10  Americas             South America
## 5173      4.41   19111312 1.228531e+10      Asia              Central Asia
## 5174      5.08     136129 1.745976e+08   Oceania                 Melanesia
## 5175      3.67   18437737 9.247976e+10  Americas             South America
## 5176      6.54    1879218           NA      Asia              Western Asia
## 5177      3.93   63881296 1.265894e+10      Asia        South-Eastern Asia
## 5178      9.03   10542601           NA      Asia              Western Asia
## 5179      6.67    7469270 2.891974e+09    Africa            Eastern Africa
## 5180      5.78    9535657 4.644232e+09    Africa            Eastern Africa
## 5181      3.08    3197064 3.238397e+09    Europe           Southern Europe
## 5182      5.26   24591493 4.406026e+10    Africa           Northern Africa
## 5183      7.19   10544904 8.455509e+09    Africa             Middle Africa
## 5184      2.06      62538 5.421652e+08  Americas                 Caribbean
## 5185      3.04   31795515 2.018159e+11  Americas             South America
## 5186      2.57    3510439           NA      Asia              Western Asia
## 5187      2.29      61077 9.401160e+08  Americas                 Caribbean
## 5188      1.83   16585905 2.774143e+11   Oceania Australia and New Zealand
## 5189      1.45    7642479 1.359332e+11    Europe            Western Europe
## 5190      2.96    6994139           NA      Asia              Western Asia
## 5191      2.68     247576 4.870336e+09  Americas                 Caribbean
## 5192      4.00     465235 4.433302e+09      Asia              Western Asia
## 5193      4.93  100779551 2.712747e+10      Asia             Southern Asia
## 5194      1.77     258524 2.198471e+09  Americas                 Caribbean
## 5195      2.01   10165746           NA    Europe            Eastern Europe
## 5196      1.57    9931873 1.750160e+11    Europe            Western Europe
## 5197      4.67     179025 3.743083e+08  Americas           Central America
## 5198      6.86    4685375 1.408050e+09    Africa            Western Africa
## 5199      5.99     517068 2.242584e+08      Asia             Southern Asia
## 5200      4.99    6592787 5.341565e+09  Americas             South America
## 5201      1.84    4542757           NA    Europe           Southern Europe
## 5202      5.04    1300097 2.674752e+09    Africa           Southern Africa
## 5203      3.04  145150468 5.076688e+11  Americas             South America
## 5204      3.67     242750 4.809119e+09      Asia        South-Eastern Asia
## 5205      1.90    8918660 1.657047e+10    Europe            Eastern Europe
## 5206      7.06    8356306 1.532119e+09    Africa            Western Africa
## 5207      7.57    5284173 9.716306e+08    Africa            Eastern Africa
## 5208      5.94    8467109           NA      Asia        South-Eastern Asia
## 5209      6.57   11370394 9.537932e+09    Africa             Middle Africa
## 5210      1.60   26919036 5.287468e+11  Americas          Northern America
## 5211      5.57     328861 2.631372e+08    Africa            Western Africa
## 5212      5.87    2809720 8.163333e+08    Africa             Middle Africa
## 5213      7.24    5585528 1.100205e+09    Africa             Middle Africa
## 5214      2.65   12716508 3.528670e+10  Americas             South America
## 5215      2.63 1114162025 4.114527e+11      Asia              Eastern Asia
## 5216      3.21   32975533 7.038879e+10  Americas             South America
## 5217      5.93     391133 1.778207e+08    Africa            Eastern Africa
## 5218      7.02   32688708 8.303050e+09    Africa             Middle Africa
## 5219      5.50    2262496 2.697770e+09    Africa             Middle Africa
## 5220      3.32    2944560 8.773620e+09  Americas           Central America
## 5221      6.62   11337122 8.149254e+09    Africa            Western Africa
## 5222      1.79    4773683           NA    Europe           Southern Europe
## 5223      1.81   10379080 3.611864e+10  Americas                 Caribbean
## 5224      2.44     736477 5.342713e+09      Asia              Western Asia
## 5225      1.91   10314591           NA    Europe            Eastern Europe
## 5226      1.56    5121511 1.212314e+11    Europe           Northern Europe
## 5227      6.17     523266           NA    Africa            Eastern Africa
## 5228      3.61    6903314 1.348966e+10  Americas                 Caribbean
## 5229      3.96    9739179 1.285643e+10  Americas             South America
## 5230      4.68   53617678 5.910292e+10    Africa           Northern Africa
## 5231      4.15    5117577 7.910787e+09  Americas           Central America
## 5232      5.89     354488 2.034473e+08    Africa             Middle Africa
## 5233      6.52    3020278           NA    Africa            Eastern Africa
## 5234      2.12    1564278           NA    Europe           Northern Europe
## 5235      7.35   44908705 6.090216e+09    Africa            Eastern Africa
## 5236      3.47     722918 1.174692e+09   Oceania                 Melanesia
## 5237      1.70    4951886 9.405933e+10    Europe           Northern Europe
## 5238      1.79   56328053 1.020974e+12    Europe            Western Europe
## 5239      3.58     189742 2.599130e+09   Oceania                 Polynesia
## 5240      5.55     901473 3.764595e+09    Africa             Middle Africa
## 5241      6.14     843060 5.190067e+08    Africa            Western Africa
## 5242      2.24    5441772 1.030785e+10      Asia              Western Asia
## 5243      1.41   78146938 1.423744e+12    Europe            Western Europe
## 5244      5.83   13852597 3.008627e+09    Africa            Western Africa
## 5245      1.51   10017036 9.509228e+10    Europe           Southern Europe
## 5246      2.32      54879 9.514639e+08  Americas          Northern America
## 5247      4.07      98063 3.097762e+08  Americas                 Caribbean
## 5248      5.70    8729406 1.202581e+10  Americas           Central America
## 5249      6.63    5548270 1.924657e+09    Africa            Western Africa
## 5250      6.71    1009967 1.653472e+08    Africa            Western Africa
## 5251      2.48     734872 4.797188e+08  Americas             South America
## 5252      5.67    6813344           NA  Americas                 Caribbean
## 5253      5.34    4631491 4.924504e+09  Americas           Central America
## 5254      1.35    5644652 1.084321e+11      Asia              Eastern Asia
## 5255      1.85   10442721 4.651299e+10    Europe            Eastern Europe
## 5256      2.14     249563 6.667715e+09    Europe           Northern Europe
## 5257      4.04  834944397 2.472864e+11      Asia             Southern Asia
## 5258      3.35  175000919 9.179713e+10      Asia        South-Eastern Asia
## 5259      5.47   53035939 5.823293e+10      Asia             Southern Asia
## 5260      6.04   16657708           NA      Asia              Western Asia
## 5261      2.14    3563438           NA    Europe           Northern Europe
## 5262      3.04    4290860 6.608637e+10      Asia              Western Asia
## 5263      1.33   56990645 8.929457e+11    Europe           Southern Europe
## 5264      3.07    2360159 6.761465e+09  Americas                 Caribbean
## 5265      1.64  121432942 3.802079e+12      Asia              Eastern Asia
## 5266      5.94    3086664 5.868684e+09      Asia              Western Asia
## 5267      2.98   16344308           NA      Asia              Central Asia
## 5268      6.42   21899004 9.665991e+09    Africa            Eastern Africa
## 5269      4.70      69104 5.156222e+07   Oceania                Micronesia
## 5270      1.63   42085050 2.536981e+11      Asia              Eastern Asia
## 5271      2.94    2002645           NA      Asia              Western Asia
## 5272      3.99    4260325 1.892842e+09      Asia              Central Asia
## 5273      6.27    4009121 7.803371e+08      Asia        South-Eastern Asia
## 5274      2.08    2652684 1.070908e+10    Europe           Northern Europe
## 5275      3.18    2668593 1.241699e+10      Asia              Western Asia
## 5276      5.09    1544580 4.435252e+08    Africa           Southern Africa
## 5277      6.67    2170426 1.137387e+09    Africa            Western Africa
## 5278      5.58    4187631           NA    Africa           Northern Africa
## 5279      2.03    3659613           NA    Europe           Northern Europe
## 5280      1.50     374117 1.072412e+10    Europe            Western Europe
## 5281      1.89     335952 4.134356e+09      Asia              Eastern Asia
## 5282      2.31    1998471           NA    Europe           Southern Europe
## 5283      6.26   10877757 3.042384e+09    Africa            Eastern Africa
## 5284      7.29    8620942 1.160470e+09    Africa            Eastern Africa
## 5285      3.58   17202032 3.970753e+10      Asia        South-Eastern Asia
## 5286      6.66     209832           NA      Asia             Southern Asia
## 5287      7.09    8189984 1.486089e+09    Africa            Western Africa
## 5288      2.07     348912 2.052803e+09    Europe           Southern Europe
## 5289      6.07    1916240 9.448396e+08    Africa            Western Africa
## 5290      2.29    1037260 2.434586e+09    Africa            Eastern Africa
## 5291      3.57   82223153 3.775372e+11  Americas           Central America
## 5292      5.17      92020 1.695709e+08   Oceania                Micronesia
## 5293      2.58    4320927 3.529644e+09    Europe            Eastern Europe
## 5294      4.64    2089716 1.130046e+09      Asia              Eastern Asia
## 5295      1.94     616055           NA    Europe           Southern Europe
## 5296      4.39   24027330 2.752401e+10    Africa           Northern Africa
## 5297      6.31   13124285 2.323270e+09    Africa            Eastern Africa
## 5298      5.49    1303879 2.482002e+09    Africa           Southern Africa
## 5299      5.31   17865238 3.092505e+09      Asia             Southern Asia
## 5300      1.55   14723266 2.591783e+11    Europe            Western Europe
## 5301      3.02     162030 1.981396e+09   Oceania                 Melanesia
## 5302      2.32    3332297 3.849321e+10   Oceania Australia and New Zealand
## 5303      4.99    3968453 2.871882e+09  Americas           Central America
## 5304      7.77    7445788 1.512482e+09    Africa            Western Africa
## 5305      6.58   90773613 3.015667e+10    Africa            Western Africa
## 5306      1.84    4199817 1.136221e+11    Europe           Northern Europe
## 5307      7.72    1679089 1.133635e+10      Asia              Western Asia
## 5308      6.23  101420791 4.583109e+10      Asia             Southern Asia
## 5309      3.20    2368772 6.459642e+09  Americas           Central America
## 5310      4.93    3960243 2.465043e+09   Oceania                 Melanesia
## 5311      4.74    3994328 5.434735e+09  Americas             South America
## 5312      4.04   20909897 4.308830e+10  Americas             South America
## 5313      4.48   58844392 5.583320e+10      Asia        South-Eastern Asia
## 5314      2.14   37990683           NA    Europe            Eastern Europe
## 5315      1.60    9896416 7.914645e+10    Europe           Southern Europe
## 5316      2.26    3457232 3.769885e+10  Americas                 Caribbean
## 5317      4.33     445203           NA      Asia              Western Asia
## 5318      2.30   23408397 4.946816e+10    Europe            Eastern Europe
## 5319      2.14  146040116           NA    Europe            Eastern Europe
## 5320      7.79    7048075 1.715006e+09    Africa            Eastern Africa
## 5321      3.59     133532 3.933609e+08  Americas                 Caribbean
## 5322      3.07     106533 2.710072e+08  Americas                 Caribbean
## 5323      5.30     161424 1.939471e+08   Oceania                 Polynesia
## 5324      6.17   15239174 1.329639e+11      Asia              Western Asia
## 5325      6.83    7062540 3.353441e+09    Africa            Western Africa
## 5326      2.20    9396975           NA    Europe           Southern Europe
## 5327      2.90      69990 3.321453e+08    Africa            Eastern Africa
## 5328      6.68    3791078 9.744809e+08    Africa            Western Africa
## 5329      1.96    2880188 3.963611e+10      Asia        South-Eastern Asia
## 5330      2.13    5234119 2.859916e+10    Europe            Eastern Europe
## 5331      1.58    1991454           NA    Europe           Southern Europe
## 5332      6.06     294962           NA   Oceania                 Melanesia
## 5333      3.92   35195598 1.086953e+11    Africa           Southern Africa
## 5334      1.43   39032625 4.048049e+11    Europe           Southern Europe
## 5335      2.62   16883250 9.023469e+09      Asia             Southern Asia
## 5336      6.28   18669146 6.858162e+09    Africa           Northern Africa
## 5337      2.94     391851 7.587981e+08  Americas             South America
## 5338      6.05     801350 8.338494e+08    Africa           Southern Africa
## 5339      1.97    8457108 1.936728e+11    Europe           Northern Europe
## 5340      1.55    6571461 2.078068e+11    Europe            Western Europe
## 5341      5.75   11730217 1.201176e+10      Asia              Western Asia
## 5342      5.35    5008827 2.431182e+09      Asia              Central Asia
## 5343      6.33   23914852 6.794263e+09    Africa            Eastern Africa
## 5344      2.26   54933561 6.363092e+10      Asia        South-Eastern Asia
## 5345      5.26     703696           NA      Asia        South-Eastern Asia
## 5346      6.57    3579489 1.004340e+09    Africa            Western Africa
## 5347      4.76      94680 1.445320e+08   Oceania                 Polynesia
## 5348      2.70    1204890 5.930637e+09  Americas                 Caribbean
## 5349      3.89    7871460 1.233378e+10    Africa           Northern Africa
## 5350      3.30   52126497 1.703191e+11      Asia              Western Asia
## 5351      4.51    3479088 3.961385e+09      Asia              Central Asia
## 5352      7.10   16227778 2.907836e+09    Africa            Eastern Africa
## 5353      1.99   51280766 7.396354e+10    Europe            Eastern Europe
## 5354      4.72    1613904 4.979575e+10      Asia              Western Asia
## 5355      1.83   56797704 1.075271e+12    Europe           Northern Europe
## 5356      1.92  247865202 6.696490e+12  Americas          Northern America
## 5357      2.52    3069094 1.610889e+10  Americas             South America
## 5358      4.35   19583186 1.340801e+10      Asia              Central Asia
## 5359      5.02     139369 1.716093e+08   Oceania                 Melanesia
## 5360      3.60   18912431 9.786335e+10  Americas             South America
## 5361      6.51    1945947           NA      Asia              Western Asia
## 5362      3.81   65313709 1.330898e+10      Asia        South-Eastern Asia
## 5363      8.93   10958983           NA      Asia              Western Asia
## 5364      6.61    7696070 3.073612e+09    Africa            Eastern Africa
## 5365      5.57    9866776 4.994982e+09    Africa            Eastern Africa
## 5366      3.02    3253659 3.556943e+09    Europe           Southern Europe
## 5367      5.01   25257671 4.599892e+10    Africa           Northern Africa
## 5368      7.18   10820992 8.489331e+09    Africa             Middle Africa
## 5369      2.06      61967 5.734638e+08  Americas                 Caribbean
## 5370      3.02   32263559 1.866874e+11  Americas             South America
## 5371      2.57    3542720           NA      Asia              Western Asia
## 5372      2.27      61032 1.024732e+09  Americas                 Caribbean
## 5373      1.84   16849253 2.883439e+11   Oceania Australia and New Zealand
## 5374      1.45    7669601 1.412171e+11    Europe            Western Europe
## 5375      2.97    7104058           NA      Asia              Western Asia
## 5376      2.65     251855 5.197979e+09  Americas                 Caribbean
## 5377      3.87     481126 4.449439e+09      Asia              Western Asia
## 5378      4.74  103400571 2.783614e+10      Asia             Southern Asia
## 5379      1.75     259454 2.309257e+09  Americas                 Caribbean
## 5380      1.95   10206300           NA    Europe            Eastern Europe
## 5381      1.57    9952253 1.810876e+11    Europe            Western Europe
## 5382      4.58     183470 4.233084e+08  Americas           Central America
## 5383      6.81    4836240 1.367862e+09    Africa            Western Africa
## 5384      5.83     529284 2.381485e+08      Asia             Southern Asia
## 5385      4.95    6723046 5.544017e+09  Americas             South America
## 5386      1.78    4559256           NA    Europe           Southern Europe
## 5387      4.86    1339813 3.024059e+09    Africa           Southern Africa
## 5388      2.92  147801816 5.243176e+11  Americas             South America
## 5389      3.61     249738 4.757460e+09      Asia        South-Eastern Asia
## 5390      1.84    8878348 1.602532e+10    Europe            Eastern Europe
## 5391      7.04    8579825 1.565064e+09    Africa            Western Africa
## 5392      7.56    5454475 9.847428e+08    Africa            Eastern Africa
## 5393      5.79    8723550           NA      Asia        South-Eastern Asia
## 5394      6.51   11716975 9.364426e+09    Africa             Middle Africa
## 5395      1.66   27296517 5.425968e+11  Americas          Northern America
## 5396      5.44     334473 2.781306e+08    Africa            Western Africa
## 5397      5.83    2871005 8.324747e+08    Africa             Middle Africa
## 5398      7.28    5769273 1.153947e+09    Africa             Middle Africa
## 5399      2.64   12928491 3.901309e+10  Americas             South America
## 5400      2.55 1135128009 4.283223e+11      Asia              Eastern Asia
## 5401      3.16   33624442 7.279427e+10  Americas             South America
## 5402      5.74     403003 1.721648e+08    Africa            Eastern Africa
## 5403      7.08   33763056 8.197930e+09    Africa             Middle Africa
## 5404      5.42    2323890 2.767909e+09    Africa             Middle Africa
## 5405      3.25    3018953 9.218063e+09  Americas           Central America
## 5406      6.49   11744698 8.389495e+09    Africa            Western Africa
## 5407      1.73    4780627           NA    Europe           Southern Europe
## 5408      1.79   10486110 3.636428e+10  Americas                 Caribbean
## 5409      2.43     751047 5.767322e+09      Asia              Western Asia
## 5410      1.87   10319255           NA    Europe            Eastern Europe
## 5411      1.62    5129472 1.219260e+11    Europe           Northern Europe
## 5412      6.14     558810           NA    Africa            Eastern Africa
## 5413      3.54    7042940 1.408328e+10  Americas                 Caribbean
## 5414      3.86    9977380 1.298250e+10  Americas             South America
## 5415      4.52   55035937 6.204174e+10    Africa           Northern Africa
## 5416      4.05    5184221 7.986904e+09  Americas           Central America
## 5417      5.90     365451 2.009466e+08    Africa             Middle Africa
## 5418      6.50    3091083           NA    Africa            Eastern Africa
## 5419      2.04    1570051           NA    Europe           Northern Europe
## 5420      7.30   46433604 6.068237e+09    Africa            Eastern Africa
## 5421      3.43     724624 1.262073e+09   Oceania                 Melanesia
## 5422      1.71    4967776 9.883545e+10    Europe           Northern Europe
## 5423      1.77   56643349 1.063729e+12    Europe            Western Europe
## 5424      3.50     194249 2.677104e+09   Oceania                 Polynesia
## 5425      5.49     926648 4.086291e+09    Africa             Middle Africa
## 5426      6.12     881146 5.496059e+08    Africa            Western Africa
## 5427      2.22    5466610 9.566184e+09      Asia              Western Asia
## 5428      1.38   78514790 1.479221e+12    Europe            Western Europe
## 5429      5.73   14232493 3.161642e+09    Africa            Western Africa
## 5430      1.46   10065859 9.870579e+10    Europe           Southern Europe
## 5431      2.30      55296 1.014827e+09  Americas          Northern America
## 5432      3.97      96871 3.285860e+08  Americas                 Caribbean
## 5433      5.64    8940285 1.249994e+10  Americas           Central America
## 5434      6.61    5763843 2.001710e+09    Africa            Western Africa
## 5435      6.68    1032797 1.754334e+08    Africa            Western Africa
## 5436      2.47     726237 4.559995e+08  Americas             South America
## 5437      5.55    6956301           NA  Americas                 Caribbean
## 5438      5.24    4766802 5.137531e+09  Americas           Central America
## 5439      1.32    5722161 1.108416e+11      Asia              Eastern Asia
## 5440      1.84   10409854 4.685552e+10    Europe            Eastern Europe
## 5441      2.15     252219 6.684947e+09    Europe           Northern Europe
## 5442      3.96  852736160 2.619934e+11      Asia             Southern Asia
## 5443      3.23  178233231 1.001366e+11      Asia        South-Eastern Asia
## 5444      5.15   54735239 6.183054e+10      Asia             Southern Asia
## 5445      5.97   17048167           NA      Asia              Western Asia
## 5446      2.06    3561331           NA    Europe           Northern Europe
## 5447      3.02    4383341 6.666075e+10      Asia              Western Asia
## 5448      1.31   56997093 9.232021e+11    Europe           Southern Europe
## 5449      3.01    2371713 7.246485e+09  Americas                 Caribbean
## 5450      1.61  121831143 4.006256e+12      Asia              Eastern Asia
## 5451      5.73    3209466 5.079222e+09      Asia              Western Asia
## 5452      2.92   16471843           NA      Asia              Central Asia
## 5453      6.23   22668238 1.011936e+10    Africa            Eastern Africa
## 5454      4.67      70863 4.714917e+07   Oceania                Micronesia
## 5455      1.61   42546704 2.708087e+11      Asia              Eastern Asia
## 5456      2.62    2054443           NA      Asia              Western Asia
## 5457      3.93    4333114 1.945648e+09      Asia              Central Asia
## 5458      6.22    4126935 8.910720e+08      Asia        South-Eastern Asia
## 5459      2.01    2665711 1.131795e+10    Europe           Northern Europe
## 5460      3.09    2676615 7.145841e+09      Asia              Western Asia
## 5461      5.00    1569936 4.736931e+08    Africa           Southern Africa
## 5462      6.59    2137018 8.340636e+08    Africa            Western Africa
## 5463      5.26    4294547           NA    Africa           Northern Africa
## 5464      2.00    3683711           NA    Europe           Northern Europe
## 5465      1.53     377708 1.177487e+10    Europe            Western Europe
## 5466      1.80     348467 4.341074e+09      Asia              Eastern Asia
## 5467      2.28    1999338           NA    Europe           Southern Europe
## 5468      6.27   11205548 3.166480e+09    Africa            Eastern Africa
## 5469      7.15    9073088 1.176075e+09    Africa            Eastern Africa
## 5470      3.55   17707064 4.330443e+10      Asia        South-Eastern Asia
## 5471      6.40     216553           NA      Asia             Southern Asia
## 5472      7.08    8322726 1.660908e+09    Africa            Western Africa
## 5473      2.06     352304 2.220704e+09    Europe           Southern Europe
## 5474      6.02    1968870 9.899802e+08    Africa            Western Africa
## 5475      2.30    1045588 2.543294e+09    Africa            Eastern Africa
## 5476      3.47   83901643 3.933873e+11  Americas           Central America
## 5477      5.05      94091 1.755500e+08   Oceania                Micronesia
## 5478      2.51    4346449 3.707266e+09    Europe            Eastern Europe
## 5479      4.36    2141006 1.177262e+09      Asia              Eastern Asia
## 5480      1.90     615201           NA    Europe           Southern Europe
## 5481      4.22   24489354 2.817540e+10    Africa           Northern Africa
## 5482      6.28   13181941 2.474283e+09    Africa            Eastern Africa
## 5483      5.36    1360921 2.527586e+09    Africa           Southern Africa
## 5484      5.24   18285434 3.226399e+09      Asia             Southern Asia
## 5485      1.55   14816751 2.706346e+11    Europe            Western Europe
## 5486      3.00     165131 2.199349e+09   Oceania                 Melanesia
## 5487      2.33    3360350 3.870210e+10   Oceania Australia and New Zealand
## 5488      4.87    4055262 2.823128e+09  Americas           Central America
## 5489      7.76    7671233 1.526607e+09    Africa            Western Africa
## 5490      6.54   93179755 3.232804e+10    Africa            Western Africa
## 5491      1.89    4219532 1.147555e+11    Europe           Northern Europe
## 5492      7.46    1741965 1.266915e+10      Asia              Western Asia
## 5493      6.14  104530689 4.810420e+10      Asia             Southern Asia
## 5494      3.13    2419618 6.560558e+09  Americas           Central America
## 5495      4.86    4057406 2.430050e+09   Oceania                 Melanesia
## 5496      4.64    4103909 5.749875e+09  Americas             South America
## 5497      3.93   21368856 3.804697e+10  Americas             South America
## 5498      4.40   60391168 5.929783e+10      Asia        South-Eastern Asia
## 5499      2.09   38094812           NA    Europe            Eastern Europe
## 5500      1.56    9886997 8.424399e+10    Europe           Southern Europe
## 5501      2.24    3486638 3.956068e+10  Americas                 Caribbean
## 5502      4.16     463062           NA      Asia              Western Asia
## 5503      2.18   23472562 4.659915e+10    Europe            Eastern Europe
## 5504      2.02  146895053 3.978271e+11    Europe            Eastern Europe
## 5505      7.54    7239097 1.714380e+09    Africa            Eastern Africa
## 5506      3.50     135954 4.290140e+08  Americas                 Caribbean
## 5507      3.01     107081 2.777634e+08  Americas                 Caribbean
## 5508      5.21     162001 2.011374e+08   Oceania                 Polynesia
## 5509      6.00   15810980 1.330470e+11      Asia              Western Asia
## 5510      6.73    7285378 3.486836e+09    Africa            Western Africa
## 5511      2.16    9450482 1.190824e+10    Europe           Southern Europe
## 5512      2.82      70150 3.693416e+08    Africa            Eastern Africa
## 5513      6.60    3878211 9.815946e+08    Africa            Western Africa
## 5514      1.75    2943633 4.369017e+10      Asia        South-Eastern Asia
## 5515      2.09    5256475 2.894472e+10    Europe            Eastern Europe
## 5516      1.52    2000910           NA    Europe           Southern Europe
## 5517      5.96     303258           NA   Oceania                 Melanesia
## 5518      3.79   35965131 1.112984e+11    Africa           Southern Africa
## 5519      1.38   39110106 4.243450e+11    Europe           Southern Europe
## 5520      2.54   17111785 9.230945e+09      Asia             Southern Asia
## 5521      6.21   19284633 7.470691e+09    Africa           Northern Africa
## 5522      2.82     400133 8.380920e+08  Americas             South America
## 5523      5.91     833787 9.415085e+08    Africa           Southern Africa
## 5524      2.02    8506236 1.990552e+11    Europe           Northern Europe
## 5525      1.55    6618268 2.168065e+11    Europe            Western Europe
## 5526      5.53   12088714 1.093572e+10      Asia              Western Asia
## 5527      5.27    5160375 2.273156e+09      Asia              Central Asia
## 5528      6.27   24663284 7.050029e+09    Africa            Eastern Africa
## 5529      2.18   55812794 7.138785e+10      Asia        South-Eastern Asia
## 5530      5.27     720198           NA      Asia        South-Eastern Asia
## 5531      6.45    3684309 1.045116e+09    Africa            Western Africa
## 5532      4.69      94943 1.450956e+08   Oceania                 Polynesia
## 5533      2.57    1213625 5.881644e+09  Americas                 Caribbean
## 5534      3.71    8050936 1.254921e+10    Africa           Northern Africa
## 5535      3.18   53066569 1.708134e+11      Asia              Western Asia
## 5536      4.44    3570558 3.792816e+09      Asia              Central Asia
## 5537      7.10   16802258 3.092831e+09    Africa            Eastern Africa
## 5538      1.94   51343974 7.682822e+10    Europe            Eastern Europe
## 5539      4.57    1712117 5.593950e+10      Asia              Western Asia
## 5540      1.82   56953861 1.099803e+12    Europe           Northern Europe
## 5541      2.00  250340795 6.935219e+12  Americas          Northern America
## 5542      2.52    3088985 1.628672e+10  Americas             South America
## 5543      4.27   20052259 1.382249e+10      Asia              Central Asia
## 5544      4.97     142852 1.742408e+08   Oceania                 Melanesia
## 5545      3.52   19388262 8.947658e+10  Americas             South America
## 5546      6.51    2019486           NA      Asia              Western Asia
## 5547      3.68   66757401 1.428912e+10      Asia        South-Eastern Asia
## 5548      8.81   11426912           NA      Asia              Western Asia
## 5549      6.54    7921028 3.042154e+09    Africa            Eastern Africa
## 5550      5.37   10184966 5.254709e+09    Africa            Eastern Africa
## 5551      2.97    3281453 3.216343e+09    Europe           Southern Europe
## 5552      4.76   25912364 4.636691e+10    Africa           Northern Africa
## 5553      7.17   11127870 8.463863e+09    Africa             Middle Africa
## 5554      2.06      61906 5.880590e+08  Americas                 Caribbean
## 5555      2.99   32729740 1.822089e+11  Americas             South America
## 5556      2.54    3544695 2.819376e+09      Asia              Western Asia
## 5557      2.25      62148 1.147728e+09  Americas                 Caribbean
## 5558      1.90   17096869 2.986515e+11   Oceania Australia and New Zealand
## 5559      1.46    7706571 1.473538e+11    Europe            Western Europe
## 5560      2.97    7216503 8.954048e+09      Asia              Western Asia
## 5561      2.64     256338 5.115006e+09  Americas                 Caribbean
## 5562      3.74     495944 4.646905e+09      Asia              Western Asia
## 5563      4.55  105983136 2.948997e+10      Asia             Southern Asia
## 5564      1.74     260374 2.198256e+09  Americas                 Caribbean
## 5565      1.89   10231983 1.436423e+10    Europe            Eastern Europe
## 5566      1.58    9978241 1.867690e+11    Europe            Western Europe
## 5567      4.51     187552 4.683000e+08  Americas           Central America
## 5568      6.74    5001271 1.411814e+09    Africa            Western Africa
## 5569      5.64     535505 2.598146e+08      Asia             Southern Asia
## 5570      4.91    6856246 5.801026e+09  Americas             South America
## 5571      1.71    4526996           NA    Europe           Southern Europe
## 5572      4.70    1379814 3.228873e+09    Africa           Southern Africa
## 5573      2.81  150393143 5.017720e+11  Americas             South America
## 5574      3.53     256939 4.809289e+09      Asia        South-Eastern Asia
## 5575      1.77    8821111 1.456423e+10    Europe            Eastern Europe
## 5576      7.01    8811033 1.555627e+09    Africa            Western Africa
## 5577      7.54    5613141 1.019207e+09    Africa            Eastern Africa
## 5578      5.62    9008856           NA      Asia        South-Eastern Asia
## 5579      6.43   12070359 8.792662e+09    Africa             Middle Africa
## 5580      1.72   27662440 5.436442e+11  Americas          Northern America
## 5581      5.31     341256 2.800557e+08    Africa            Western Africa
## 5582      5.78    2937832 8.145962e+08    Africa             Middle Africa
## 5583      7.31    5958022 1.105729e+09    Africa             Middle Africa
## 5584      2.62   13141202 4.045563e+10  Americas             South America
## 5585      2.43 1154605773 4.445986e+11      Asia              Eastern Asia
## 5586      3.10   34271563 7.719253e+10  Americas             South America
## 5587      5.57     415144 1.809304e+08    Africa            Eastern Africa
## 5588      7.13   34962676 7.659464e+09    Africa             Middle Africa
## 5589      5.35    2386467 2.795588e+09    Africa             Middle Africa
## 5590      3.18    3095994 9.578021e+09  Americas           Central America
## 5591      6.36   12165909 8.297553e+09    Africa            Western Africa
## 5592      1.67    4776374 2.514784e+10    Europe           Southern Europe
## 5593      1.75   10582082 3.529205e+10  Americas                 Caribbean
## 5594      2.41     766611 6.194334e+09      Asia              Western Asia
## 5595      1.82   10323701 5.634141e+10    Europe            Eastern Europe
## 5596      1.67    5140332 1.238859e+11    Europe           Northern Europe
## 5597      6.09     588356 6.600309e+08    Africa            Eastern Africa
## 5598      3.47    7183646 1.331513e+10  Americas                 Caribbean
## 5599      3.77   10218085 1.333067e+10  Americas             South America
## 5600      4.35   56397273 6.557921e+10    Africa           Northern Africa
## 5601      3.95    5252082 8.372810e+09  Americas           Central America
## 5602      5.90     377363 2.074998e+08    Africa             Middle Africa
## 5603      6.49    3139083           NA    Africa            Eastern Africa
## 5604      1.94    1565320           NA    Europe           Northern Europe
## 5605      7.25   48057094 6.233683e+09    Africa            Eastern Africa
## 5606      3.40     728626 1.335273e+09   Oceania                 Melanesia
## 5607      1.79    4986705 9.933481e+10    Europe           Northern Europe
## 5608      1.75   56943299 1.091599e+12    Europe            Western Europe
## 5609      3.40     198370 2.736000e+09   Oceania                 Polynesia
## 5610      5.42     952269 4.298461e+09    Africa             Middle Africa
## 5611      6.11     916811 5.691657e+08    Africa            Western Africa
## 5612      2.18    5460309 8.151515e+09      Asia              Western Asia
## 5613      1.36   78958237 1.556954e+12    Europe            Western Europe
## 5614      5.62   14628260 3.266887e+09    Africa            Western Africa
## 5615      1.42   10131737 9.870579e+10    Europe           Southern Europe
## 5616      2.44      55603 8.958941e+08  Americas          Northern America
## 5617      3.84      96286 3.456700e+08  Americas                 Caribbean
## 5618      5.58    9158547 1.288776e+10  Americas           Central America
## 5619      6.58    6034082 2.088266e+09    Africa            Western Africa
## 5620      6.65    1056208 1.861349e+08    Africa            Western Africa
## 5621      2.47     720282 4.421459e+08  Americas             South America
## 5622      5.43    7099733           NA  Americas                 Caribbean
## 5623      5.14    4903363 5.142508e+09  Americas           Central America
## 5624      1.30    5794034 1.151628e+11      Asia              Eastern Asia
## 5625      1.83   10385061 4.521715e+10    Europe            Eastern Europe
## 5626      2.16     254830 6.763119e+09    Europe           Northern Europe
## 5627      3.88  870601776 2.764907e+11      Asia             Southern Asia
## 5628      3.12  181436821 1.091505e+11      Asia        South-Eastern Asia
## 5629      4.82   56169196 7.029376e+10      Asia             Southern Asia
## 5630      5.88   17478455           NA      Asia              Western Asia
## 5631      2.00    3563106           NA    Europe           Northern Europe
## 5632      3.00    4499161 7.121733e+10      Asia              Western Asia
## 5633      1.30   57007577 9.421516e+11    Europe           Southern Europe
## 5634      2.95    2385806 7.550877e+09  Americas                 Caribbean
## 5635      1.57  122249285 4.229501e+12      Asia              Eastern Asia
## 5636      5.54    3358453 5.128681e+09      Asia              Western Asia
## 5637      2.84   16530027 2.634828e+10      Asia              Central Asia
## 5638      6.04   23446229 1.054357e+10    Africa            Eastern Africa
## 5639      4.63      72411 4.815499e+07   Oceania                Micronesia
## 5640      1.61   42972254 2.956018e+11      Asia              Eastern Asia
## 5641      2.36    2058832           NA      Asia              Western Asia
## 5642      3.86    4394502 2.056604e+09      Asia              Central Asia
## 5643      6.15    4247839 9.508146e+08      Asia        South-Eastern Asia
## 5644      1.92    2663985 1.041890e+10    Europe           Northern Europe
## 5645      3.00    2703019 9.041859e+09      Asia              Western Asia
## 5646      4.92    1597534 5.043615e+08    Africa           Southern Africa
## 5647      6.50    2102877 4.084338e+08    Africa            Western Africa
## 5648      4.97    4398419           NA    Africa           Northern Africa
## 5649      1.96    3697393 1.586661e+10    Europe           Northern Europe
## 5650      1.56     381787 1.240129e+10    Europe            Western Europe
## 5651      1.69     359735 4.688359e+09      Asia              Eastern Asia
## 5652      2.24    1996227 3.932157e+09    Europe           Southern Europe
## 5653      6.26   11545782 3.265592e+09    Africa            Eastern Africa
## 5654      7.00    9408998 1.243020e+09    Africa            Eastern Africa
## 5655      3.52   18211097 4.720601e+10      Asia        South-Eastern Asia
## 5656      6.10     223179           NA      Asia             Southern Asia
## 5657      7.06    8482075 1.630137e+09    Africa            Western Africa
## 5658      2.05     355707 2.360417e+09    Europe           Southern Europe
## 5659      5.98    2023665 9.724446e+08    Africa            Western Africa
## 5660      2.29    1055865 2.726074e+09    Africa            Eastern Africa
## 5661      3.38   85609404 4.133253e+11  Americas           Central America
## 5662      4.96      96331 1.821172e+08   Oceania                Micronesia
## 5663      2.41    4364114 3.618292e+09    Europe            Eastern Europe
## 5664      4.05    2184145 1.139772e+09      Asia              Eastern Asia
## 5665      1.87     614999           NA    Europe           Southern Europe
## 5666      4.06   24950128 2.931212e+10    Africa           Northern Africa
## 5667      6.24   13371971 2.499025e+09    Africa            Eastern Africa
## 5668      5.23    1415447 2.590637e+09    Africa           Southern Africa
## 5669      5.17   18741688 3.375944e+09      Asia             Southern Asia
## 5670      1.62   14915139 2.819556e+11    Europe            Western Europe
## 5671      2.98     168537 2.278526e+09   Oceania                 Melanesia
## 5672      2.40    3397534 3.871594e+10   Oceania Australia and New Zealand
## 5673      4.75    4144564 2.820501e+09  Americas           Central America
## 5674      7.76    7911884 1.507000e+09    Africa            Western Africa
## 5675      6.49   95617345 3.497765e+10    Africa            Western Africa
## 5676      1.93    4240375 1.169666e+11    Europe           Northern Europe
## 5677      7.16    1812159 1.265263e+10      Asia              Western Asia
## 5678      6.02  107607639 5.024897e+10      Asia             Southern Asia
## 5679      3.08    2471010 7.091897e+09  Americas           Central America
## 5680      4.80    4157903 2.356852e+09   Oceania                 Melanesia
## 5681      4.54    4213740 5.927581e+09  Americas             South America
## 5682      3.83   21826658 3.609012e+10  Americas             South America
## 5683      4.32   61947340 6.109868e+10      Asia        South-Eastern Asia
## 5684      2.04   38195258 1.181704e+11    Europe            Eastern Europe
## 5685      1.54    9890319 8.757207e+10    Europe           Southern Europe
## 5686      2.22    3517984 4.105710e+10  Americas                 Caribbean
## 5687      4.02     476478           NA      Asia              Western Asia
## 5688      1.81   23489361 4.398960e+10    Europe            Eastern Europe
## 5689      1.89  147568552 3.858923e+11    Europe            Eastern Europe
## 5690      7.27    7259740 1.673247e+09    Africa            Eastern Africa
## 5691      3.40     138180 5.300249e+08  Americas                 Caribbean
## 5692      2.96     107509 2.917783e+08  Americas                 Caribbean
## 5693      5.12     162865 1.922442e+08   Oceania                 Polynesia
## 5694      5.84   16361453 1.441278e+11      Asia              Western Asia
## 5695      6.63    7514201 3.463278e+09    Africa            Western Africa
## 5696      2.11    9517670 1.095558e+10    Europe           Southern Europe
## 5697      2.74      70627 3.951791e+08    Africa            Eastern Africa
## 5698      6.53    3931208 1.014478e+09    Africa            Western Africa
## 5699      1.83    3016400 4.810574e+10      Asia        South-Eastern Asia
## 5700      2.04    5277709 2.817161e+10    Europe            Eastern Europe
## 5701      1.47    2006520 1.670940e+10    Europe           Southern Europe
## 5702      5.85     311849 3.408660e+08   Oceania                 Melanesia
## 5703      3.66   36793490 1.109447e+11    Africa           Southern Africa
## 5704      1.34   39192055 4.403911e+11    Europe           Southern Europe
## 5705      2.48   17330817 9.821725e+09      Asia             Southern Asia
## 5706      6.15   20008804 7.062041e+09    Africa           Northern Africa
## 5707      2.73     408276 8.339610e+08  Americas             South America
## 5708      5.74     862728 1.139395e+09    Africa           Southern Africa
## 5709      2.14    8559107 2.010663e+11    Europe           Northern Europe
## 5710      1.55    6673920 2.247734e+11    Europe            Western Europe
## 5711      5.31   12451539 1.177130e+10      Asia              Western Asia
## 5712      5.18    5297286 2.259517e+09      Asia              Central Asia
## 5713      6.21   25458208 7.546709e+09    Africa            Eastern Africa
## 5714      2.11   56582824 7.935985e+10      Asia        South-Eastern Asia
## 5715      5.34     740231           NA      Asia        South-Eastern Asia
## 5716      6.33    3786942 1.042569e+09    Africa            Western Africa
## 5717      4.64      95152 1.421297e+08   Oceania                 Polynesia
## 5718      2.45    1221904 5.970341e+09  Americas                 Caribbean
## 5719      3.54    8232797 1.354685e+10    Africa           Northern Africa
## 5720      3.08   53994605 1.866412e+11      Asia              Western Asia
## 5721      4.35    3668000 3.820911e+09      Asia              Central Asia
## 5722      7.09   17384369 3.293066e+09    Africa            Eastern Africa
## 5723      1.87   51370009 7.195329e+10    Europe            Eastern Europe
## 5724      4.39    1811458 6.619208e+10      Asia              Western Asia
## 5725      1.81   57110117 1.108373e+12    Europe           Northern Europe
## 5726      2.07  252847810 7.063943e+12  Americas          Northern America
## 5727      2.52    3109987 1.633515e+10  Americas             South America
## 5728      4.18   20515248 1.404365e+10      Asia              Central Asia
## 5729      4.93     146633 1.946383e+08   Oceania                 Melanesia
## 5730      3.45   19861959 9.526387e+10  Americas             South America
## 5731      6.53    2101156           NA      Asia              Western Asia
## 5732      3.56   68209604 1.501800e+10      Asia        South-Eastern Asia
## 5733      8.67   11961099 5.553970e+09      Asia              Western Asia
## 5734      6.47    8143142 3.027519e+09    Africa            Eastern Africa
## 5735      5.18   10484771 5.621938e+09    Africa            Eastern Africa
## 5736      2.92    3275438 2.264659e+09    Europe           Southern Europe
## 5737      4.50   26554277 4.581050e+10    Africa           Northern Africa
## 5738      7.14   11472173 8.362297e+09    Africa             Middle Africa
## 5739      2.07      62412 6.000345e+08  Americas                 Caribbean
## 5740      2.96   33193920 2.052942e+11  Americas             South America
## 5741      2.48    3511912 2.489509e+09      Asia              Western Asia
## 5742      2.22      64623 1.193643e+09  Americas                 Caribbean
## 5743      1.85   17325818 2.979369e+11   Oceania Australia and New Zealand
## 5744      1.51    7755143 1.524252e+11    Europe            Western Europe
## 5745      2.94    7332519 8.891370e+09      Asia              Western Asia
## 5746      2.63     261117 4.901108e+09  Americas                 Caribbean
## 5747      3.60     509654 5.168753e+09      Asia              Western Asia
## 5748      4.37  108509679 3.047474e+10      Asia             Southern Asia
## 5749      1.73     261281 2.134242e+09  Americas                 Caribbean
## 5750      1.81   10241137 1.419186e+10    Europe            Eastern Europe
## 5751      1.59   10011217 1.901926e+11    Europe            Western Europe
## 5752      4.44     191127 5.174577e+08  Americas           Central America
## 5753      6.68    5182525 1.478487e+09    Africa            Western Africa
## 5754      5.43     534678 2.725352e+08      Asia             Southern Asia
## 5755      4.87    6992521 6.106538e+09  Americas             South America
## 5756      1.65    4437898           NA    Europe           Southern Europe
## 5757      4.54    1420098 3.469705e+09    Africa           Southern Africa
## 5758      2.72  152916852 5.093591e+11  Americas             South America
## 5759      3.44     264365 4.960586e+09      Asia        South-Eastern Asia
## 5760      1.69    8745408 1.333423e+10    Europe            Eastern Europe
## 5761      6.98    9050090 1.696723e+09    Africa            Western Africa
## 5762      7.51    5759429 1.070135e+09    Africa            Eastern Africa
## 5763      5.44    9323607           NA      Asia        South-Eastern Asia
## 5764      6.35   12430311 8.457785e+09    Africa             Middle Africa
## 5765      1.71   28014102 5.322703e+11  Americas          Northern America
## 5766      5.16     349326 2.839881e+08    Africa            Western Africa
## 5767      5.73    3010950 8.100961e+08    Africa             Middle Africa
## 5768      7.35    6151213 1.200105e+09    Africa             Middle Africa
## 5769      2.60   13354054 4.367994e+10  Americas             South America
## 5770      2.28 1172327831 4.855016e+11      Asia              Eastern Asia
## 5771      3.06   34916770 7.895038e+10  Americas             South America
## 5772      5.45     427556 1.711681e+08    Africa            Eastern Africa
## 5773      7.18   36309209 7.014457e+09    Africa             Middle Africa
## 5774      5.29    2450125 2.862682e+09    Africa             Middle Africa
## 5775      3.09    3175654 9.824359e+09  Americas           Central America
## 5776      6.23   12600967 8.300949e+09    Africa            Western Africa
## 5777      1.62    4760003 1.984450e+10    Europe           Southern Europe
## 5778      1.72   10664577 3.151838e+10  Americas                 Caribbean
## 5779      2.38     783138 6.240141e+09      Asia              Western Asia
## 5780      1.76   10328440 4.979739e+10    Europe            Eastern Europe
## 5781      1.68    5154309 1.254969e+11    Europe           Northern Europe
## 5782      6.00     610679 6.317973e+08    Africa            Eastern Africa
## 5783      3.40    7325622 1.344085e+10  Americas                 Caribbean
## 5784      3.67   10460988 1.402302e+10  Americas             South America
## 5785      4.18   57689828 6.628670e+10    Africa           Northern Africa
## 5786      3.86    5321576 8.672159e+09  Americas           Central America
## 5787      5.90     390381 2.051410e+08    Africa             Middle Africa
## 5788      6.47    3160644           NA    Africa            Eastern Africa
## 5789      1.83    1548287           NA    Europe           Northern Europe
## 5790      7.19   49784987 5.788767e+09    Africa            Eastern Africa
## 5791      3.37     735469 1.299221e+09   Oceania                 Melanesia
## 5792      1.80    5009381 9.337479e+10    Europe           Northern Europe
## 5793      1.74   57226524 1.102943e+12    Europe            Western Europe
## 5794      3.29     202020 2.870064e+09   Oceania                 Polynesia
## 5795      5.34     978252 4.561205e+09    Africa             Middle Africa
## 5796      6.10     949490 5.868499e+08    Africa            Western Africa
## 5797      2.13    5418449 6.431545e+09      Asia              Western Asia
## 5798      1.34   79483739 1.636488e+12    Europe            Western Europe
## 5799      5.51   15042736 3.439438e+09    Africa            Western Africa
## 5800      1.39   10217782 1.017657e+11    Europe           Southern Europe
## 5801      2.42      55786 8.948775e+08  Americas          Northern America
## 5802      3.70      96455 3.536097e+08  Americas                 Caribbean
## 5803      5.53    9385000 1.335923e+10  Americas           Central America
## 5804      6.54    6367110 2.142841e+09    Africa            Western Africa
## 5805      6.61    1080191 1.956277e+08    Africa            Western Africa
## 5806      2.47     717502 4.686066e+08  Americas             South America
## 5807      5.32    7243391 3.734793e+09  Americas                 Caribbean
## 5808      5.05    5041050 5.309745e+09  Americas           Central America
## 5809      1.26    5857335 1.217208e+11      Asia              Eastern Asia
## 5810      1.80   10370223 3.983990e+10    Europe            Eastern Europe
## 5811      2.17     257387 6.748002e+09    Europe           Northern Europe
## 5812      3.79  888513869 2.794127e+11      Asia             Southern Asia
## 5813      3.02  184614740 1.188952e+11      Asia        South-Eastern Asia
## 5814      4.48   57288039 7.914681e+10      Asia             Southern Asia
## 5815      5.79   17952909           NA      Asia              Western Asia
## 5816      1.95    3570140           NA    Europe           Northern Europe
## 5817      2.97    4641600 7.670062e+10      Asia              Western Asia
## 5818      1.29   57029614 9.566017e+11    Europe           Southern Europe
## 5819      2.90    2403082 7.916206e+09  Americas                 Caribbean
## 5820      1.54  122702527 4.370104e+12      Asia              Eastern Asia
## 5821      5.35    3538663 5.222223e+09      Asia              Western Asia
## 5822      2.73   16514269 2.344997e+10      Asia              Central Asia
## 5823      5.85   24234087 1.069522e+10    Africa            Eastern Africa
## 5824      4.60      73698 4.607582e+07   Oceania                Micronesia
## 5825      1.63   43358716 3.233682e+11      Asia              Eastern Asia
## 5826      2.20    2007110           NA      Asia              Western Asia
## 5827      3.77    4441780 1.895139e+09      Asia              Central Asia
## 5828      6.06    4371549 9.916669e+08      Asia        South-Eastern Asia
## 5829      1.82    2645056 9.106617e+09    Europe           Northern Europe
## 5830      2.92    2752473 1.249591e+10      Asia              Western Asia
## 5831      4.84    1627900 5.162232e+08    Africa           Southern Africa
## 5832      6.41    2066060 3.503332e+08    Africa            Western Africa
## 5833      4.69    4499210           NA    Africa           Northern Africa
## 5834      1.91    3699352 1.496607e+10    Europe           Northern Europe
## 5835      1.60     386355 1.347328e+10    Europe            Western Europe
## 5836      1.59     369484 4.861829e+09      Asia              Eastern Asia
## 5837      2.21    1988458 3.689517e+09    Europe           Southern Europe
## 5838      6.23   11898267 3.059548e+09    Africa            Eastern Africa
## 5839      6.85    9604199 1.351539e+09    Africa            Eastern Africa
## 5840      3.49   18709835 5.171204e+10      Asia        South-Eastern Asia
## 5841      5.78     229686           NA      Asia             Southern Asia
## 5842      7.04    8672581 1.656481e+09    Africa            Western Africa
## 5843      2.04     359113 2.508096e+09    Europe           Southern Europe
## 5844      5.93    2080782 9.898327e+08    Africa            Western Africa
## 5845      2.28    1068435 2.846988e+09    Africa            Eastern Africa
## 5846      3.29   87347208 4.307770e+11  Americas           Central America
## 5847      4.88      98800 1.956436e+08   Oceania                Micronesia
## 5848      2.31    4373582 3.039365e+09    Europe            Eastern Europe
## 5849      3.75    2217920 1.040686e+09      Asia              Eastern Asia
## 5850      1.84     615743           NA    Europe           Southern Europe
## 5851      3.91   25410178 3.133408e+10    Africa           Northern Africa
## 5852      6.19   13719853 2.621478e+09    Africa            Eastern Africa
## 5853      5.10    1466152 2.802370e+09    Africa           Southern Africa
## 5854      5.09   19237322 3.590929e+09      Asia             Southern Asia
## 5855      1.61   15019184 2.888326e+11    Europe            Western Europe
## 5856      2.96     172274 2.390174e+09   Oceania                 Melanesia
## 5857      2.36    3445596 3.821485e+10   Oceania Australia and New Zealand
## 5858      4.64    4236805 2.815122e+09  Americas           Central America
## 5859      7.76    8168834 1.544739e+09    Africa            Western Africa
## 5860      6.44   98085436 3.664105e+10    Africa            Western Africa
## 5861      1.92    4262367 1.205989e+11    Europe           Northern Europe
## 5862      6.83    1892345 1.342116e+10      Asia              Western Asia
## 5863      5.90  110634399 5.279236e+10      Asia             Southern Asia
## 5864      3.02    2522901 7.759883e+09  Americas           Central America
## 5865      4.76    4261933 2.581859e+09   Oceania                 Melanesia
## 5866      4.45    4323402 6.073965e+09  Americas             South America
## 5867      3.72   22283130 3.687179e+10  Americas             South America
## 5868      4.25   63509940 6.074533e+10      Asia        South-Eastern Asia
## 5869      1.98   38297549 1.098800e+11    Europe            Eastern Europe
## 5870      1.52    9909574 9.139739e+10    Europe           Southern Europe
## 5871      2.20    3551582 4.200321e+10  Americas                 Caribbean
## 5872      3.89     485114           NA      Asia              Western Asia
## 5873      1.56   23454143 3.831494e+10    Europe            Eastern Europe
## 5874      1.73  148040354 3.664166e+11    Europe            Eastern Europe
## 5875      7.01    7071393 1.631175e+09    Africa            Eastern Africa
## 5876      3.30     140159 5.442187e+08  Americas                 Caribbean
## 5877      2.91     107811 2.935752e+08  Americas                 Caribbean
## 5878      5.03     164073 1.878226e+08   Oceania                 Polynesia
## 5879      5.69   16890555 1.572489e+11      Asia              Western Asia
## 5880      6.52    7749559 3.551793e+09    Africa            Western Africa
## 5881      2.05    9603621 9.883838e+09    Europe           Southern Europe
## 5882      2.66      71496 4.060877e+08    Africa            Eastern Africa
## 5883      6.45    3945899 1.038318e+09    Africa            Western Africa
## 5884      1.73    3100091 5.122574e+10      Asia        South-Eastern Asia
## 5885      1.97    5298080 2.406594e+10    Europe            Eastern Europe
## 5886      1.43    2007918 1.522224e+10    Europe           Southern Europe
## 5887      5.73     320764 3.613322e+08   Oceania                 Melanesia
## 5888      3.53   37692367 1.098150e+11    Africa           Southern Africa
## 5889      1.31   39287043 4.516035e+11    Europe           Southern Europe
## 5890      2.43   17540762 1.027352e+10      Asia             Southern Asia
## 5891      6.09   20861117 7.592464e+09    Africa           Northern Africa
## 5892      2.67     416068 8.571564e+08  Americas             South America
## 5893      5.57     887248 1.159452e+09    Africa           Southern Africa
## 5894      2.11    8616535 1.988118e+11    Europe           Northern Europe
## 5895      1.54    6739995 2.226466e+11    Europe            Western Europe
## 5896      5.11   12817578 1.270138e+10      Asia              Western Asia
## 5897      5.07    5417554 2.099091e+09      Asia              Central Asia
## 5898      6.15   26307482 7.703076e+09    Africa            Eastern Africa
## 5899      2.06   57225972 8.615167e+10      Asia        South-Eastern Asia
## 5900      5.47     764884           NA      Asia        South-Eastern Asia
## 5901      6.21    3886858 1.035272e+09    Africa            Western Africa
## 5902      4.61      95304 1.512472e+08   Oceania                 Polynesia
## 5903      2.34    1229906 6.130455e+09  Americas                 Caribbean
## 5904      3.36    8417689 1.407579e+10    Africa           Northern Africa
## 5905      2.99   54909508 1.879856e+11      Asia              Western Asia
## 5906      4.22    3772350 3.641328e+09      Asia              Central Asia
## 5907      7.08   17973428 3.475966e+09    Africa            Eastern Africa
## 5908      1.79   51360720 6.590156e+10    Europe            Eastern Europe
## 5909      4.19    1913190 6.676139e+10      Asia              Western Asia
## 5910      1.80   57264600 1.092940e+12    Europe           Northern Europe
## 5911      2.06  255367160 7.045491e+12  Americas          Northern America
## 5912      2.51    3132048 1.691322e+10  Americas             South America
## 5913      4.06   20970307 1.397456e+10      Asia              Central Asia
## 5914      4.89     150779 2.007486e+08   Oceania                 Melanesia
## 5915      3.37   20332247 1.045329e+11  Americas             South America
## 5916      6.55    2190716           NA      Asia              Western Asia
## 5917      3.42   69670620 1.591320e+10      Asia        South-Eastern Asia
## 5918      8.50   12571240 5.903509e+09      Asia              Western Asia
## 5919      6.40    8361381 3.026425e+09    Africa            Eastern Africa
## 5920      5.00   10763036 5.932931e+09    Africa            Eastern Africa
## 5921      2.87    3240613 2.101604e+09    Europe           Southern Europe
## 5922      4.24   27180921 4.663510e+10    Africa           Northern Africa
## 5923      7.12   11848971 7.785298e+09    Africa             Middle Africa
## 5924      2.10      63434 6.051239e+08  Americas                 Caribbean
## 5925      2.92   33655149 2.298079e+11  Americas             South America
## 5926      2.40    3449497 1.448894e+09      Asia              Western Asia
## 5927      2.19      68235 1.241360e+09  Americas                 Caribbean
## 5928      1.89   17538387 2.992897e+11   Oceania Australia and New Zealand
## 5929      1.51    7813393 1.556163e+11    Europe            Western Europe
## 5930      2.88    7450920 6.881920e+09      Asia              Western Asia
## 5931      2.62     266133 4.713612e+09  Americas                 Caribbean
## 5932      3.47     522748 5.514542e+09      Asia              Western Asia
## 5933      4.20  110987459 3.201041e+10      Asia             Southern Asia
## 5934      1.73     262184 2.027982e+09  Americas                 Caribbean
## 5935      1.72   10234863 1.282944e+10    Europe            Eastern Europe
## 5936      1.60   10050405 1.931038e+11    Europe            Western Europe
## 5937      4.36     194321 5.797376e+08  Americas           Central America
## 5938      6.60    5378226 1.537774e+09    Africa            Western Africa
## 5939      5.22     528085 2.782121e+08      Asia             Southern Asia
## 5940      4.81    7131699 6.207082e+09  Americas             South America
## 5941      1.59    4301169           NA    Europe           Southern Europe
## 5942      4.39    1460453 3.570919e+09    Africa           Southern Africa
## 5943      2.64  155379009 5.069808e+11  Americas             South America
## 5944      3.32     271989 5.196640e+09      Asia        South-Eastern Asia
## 5945      1.60    8653527 1.236451e+10    Europe            Eastern Europe
## 5946      6.95    9297116 1.700671e+09    Africa            Western Africa
## 5947      7.47    5895131 1.080943e+09    Africa            Eastern Africa
## 5948      5.24    9659238           NA      Asia        South-Eastern Asia
## 5949      6.26   12796739 8.195593e+09    Africa             Middle Africa
## 5950      1.71   28353843 5.369287e+11  Americas          Northern America
## 5951      5.02     358473 2.926338e+08    Africa            Western Africa
## 5952      5.69    3089141 7.580548e+08    Africa             Middle Africa
## 5953      7.38    6350174 1.296131e+09    Africa             Middle Africa
## 5954      2.56   13566942 4.904293e+10  Americas             South America
## 5955      2.11 1188450231 5.544429e+11      Asia              Eastern Asia
## 5956      3.01   35558683 8.292370e+10  Americas             South America
## 5957      5.36     440252 1.857703e+08    Africa            Eastern Africa
## 5958      7.22   37783835 6.277938e+09    Africa             Middle Africa
## 5959      5.24    2514907 2.937112e+09    Africa             Middle Africa
## 5960      3.00    3257463 1.072349e+10  Americas           Central America
## 5961      6.11   13046907 8.280648e+09    Africa            Western Africa
## 5962      1.57    4732864 1.752005e+10    Europe           Southern Europe
## 5963      1.68   10735775 2.786836e+10  Americas                 Caribbean
## 5964      2.34     800660 6.826714e+09      Asia              Western Asia
## 5965      1.68   10333930 4.954514e+10    Europe            Eastern Europe
## 5966      1.76    5171304 1.279761e+11    Europe           Northern Europe
## 5967      5.88     627063 6.316838e+08    Africa            Eastern Africa
## 5968      3.33    7468551 1.485391e+10  Americas                 Caribbean
## 5969      3.58   10705670 1.423512e+10  Americas             South America
## 5970      4.02   58922018 6.922452e+10    Africa           Northern Africa
## 5971      3.78    5392142 9.326460e+09  Americas           Central America
## 5972      5.90     404081 2.270818e+08    Africa             Middle Africa
## 5973      6.44    3160617 4.295890e+08    Africa            Eastern Africa
## 5974      1.71    1520879           NA    Europe           Northern Europe
## 5975      7.14   51602776 5.286720e+09    Africa            Eastern Africa
## 5976      3.35     744534 1.378473e+09   Oceania                 Melanesia
## 5977      1.85    5034898 9.012069e+10    Europe           Northern Europe
## 5978      1.72   57495252 1.119243e+12    Europe            Western Europe
## 5979      3.18     205269 2.895894e+09   Oceania                 Polynesia
## 5980      5.26    1004598 4.420257e+09    Africa             Middle Africa
## 5981      6.08     979701 6.066777e+08    Africa            Western Africa
## 5982      2.08    5345624 3.543781e+09      Asia              Western Asia
## 5983      1.32   80075940 1.667775e+12    Europe            Western Europe
## 5984      5.39   15471527 3.572868e+09    Africa            Western Africa
## 5985      1.37   10321044 1.024780e+11    Europe           Southern Europe
## 5986      2.61      55854 8.491341e+08  Americas          Northern America
## 5987      3.55      97201 3.525615e+08  Americas                 Caribbean
## 5988      5.47    9619113 1.400559e+10  Americas           Central America
## 5989      6.49    6751394 2.212932e+09    Africa            Western Africa
## 5990      6.55    1104708 1.977796e+08    Africa            Western Africa
## 5991      2.47     717621 5.053053e+08  Americas             South America
## 5992      5.21    7386974 3.536478e+09  Americas                 Caribbean
## 5993      4.95    5179557 5.608380e+09  Americas           Central America
## 5994      1.22    5914576 1.291373e+11      Asia              Eastern Asia
## 5995      1.75   10364661 3.861914e+10    Europe            Eastern Europe
## 5996      2.17     259895 6.520331e+09    Europe           Northern Europe
## 5997      3.71  906461358 2.947312e+11      Asia             Southern Asia
## 5998      2.93  187762097 1.274801e+11      Asia        South-Eastern Asia
## 5999      4.14   58130099 8.251139e+10      Asia             Southern Asia
## 6000      5.70   18468521           NA      Asia              Western Asia
## 6001      1.92    3582342           NA    Europe           Northern Europe
## 6002      2.95    4806983 8.101717e+10      Asia              Western Asia
## 6003      1.28   57062760 9.639957e+11    Europe           Southern Europe
## 6004      2.86    2422783 8.071011e+09  Americas                 Caribbean
## 6005      1.50  123180357 4.405896e+12      Asia              Eastern Asia
## 6006      5.17    3743944 6.196942e+09      Asia              Western Asia
## 6007      2.61   16433379 2.220712e+10      Asia              Central Asia
## 6008      5.67   25029754 1.060971e+10    Africa            Eastern Africa
## 6009      4.57      74773 4.754241e+07   Oceania                Micronesia
## 6010      1.65   43708170 3.423683e+11      Asia              Eastern Asia
## 6011      2.14    1909096 2.253009e+10      Asia              Western Asia
## 6012      3.66    4477038 1.631928e+09      Asia              Central Asia
## 6013      5.93    4496971 1.046802e+09      Asia        South-Eastern Asia
## 6014      1.70    2611306 6.181702e+09    Europe           Northern Europe
## 6015      2.84    2821868 1.305822e+10      Asia              Western Asia
## 6016      4.76    1660360 5.542325e+08    Africa           Southern Africa
## 6017      6.34    2028672 2.274164e+08    Africa            Western Africa
## 6018      4.43    4596811           NA    Africa           Northern Africa
## 6019      1.85    3690788 1.178444e+10    Europe           Northern Europe
## 6020      1.64     391400 1.371845e+10    Europe            Western Europe
## 6021      1.49     377799 5.508452e+09      Asia              Eastern Asia
## 6022      2.16    1977033 3.447300e+09    Europe           Southern Europe
## 6023      6.18   12263899 3.095839e+09    Africa            Eastern Africa
## 6024      6.72    9682918 1.252431e+09    Africa            Eastern Africa
## 6025      3.45   19204700 5.630672e+10      Asia        South-Eastern Asia
## 6026      5.46     236053           NA      Asia             Southern Asia
## 6027      7.02    8891141 1.794519e+09    Africa            Western Africa
## 6028      2.02     362492 2.625750e+09    Europe           Southern Europe
## 6029      5.88    2140250 1.008383e+09    Africa            Western Africa
## 6030      2.25    1082958 3.032403e+09    Africa            Eastern Africa
## 6031      3.20   89110043 4.464084e+11  Americas           Central America
## 6032      4.82     101412 2.034851e+08   Oceania                Micronesia
## 6033      2.19    4375312 2.154910e+09    Europe            Eastern Europe
## 6034      3.45    2243506 9.443550e+08      Asia              Eastern Asia
## 6035      1.83     617174           NA    Europe           Southern Europe
## 6036      3.76   25866445 3.007102e+10    Africa           Northern Africa
## 6037      6.14   14203987 2.487659e+09    Africa            Eastern Africa
## 6038      4.97    1513689 3.003878e+09    Africa           Southern Africa
## 6039      5.00   19765570 3.738387e+09      Asia             Southern Asia
## 6040      1.59   15128288 2.937603e+11    Europe            Western Europe
## 6041      2.93     176310 2.402603e+09   Oceania                 Melanesia
## 6042      2.31    3502765 3.864327e+10   Oceania Australia and New Zealand
## 6043      4.52    4331273 2.825973e+09  Americas           Central America
## 6044      7.77    8442330 1.444077e+09    Africa            Western Africa
## 6045      6.40  100592458 3.771032e+10    Africa            Western Africa
## 6046      1.88    4285504 1.248478e+11    Europe           Northern Europe
## 6047      6.47    1979914 1.455040e+10      Asia              Western Asia
## 6048      5.77  113616165 5.686048e+10      Asia             Southern Asia
## 6049      2.98    2575330 8.396324e+09  Americas           Central America
## 6050      4.72    4369407 2.939422e+09   Oceania                 Melanesia
## 6051      4.36    4432738 6.281869e+09  Americas             South America
## 6052      3.62   22737056 3.671370e+10  Americas             South America
## 6053      4.18   65078901 6.095041e+10      Asia        South-Eastern Asia
## 6054      1.91   38396826 1.126435e+11    Europe            Eastern Europe
## 6055      1.50    9943197 9.239315e+10    Europe           Southern Europe
## 6056      2.18    3586848 4.392010e+10  Americas                 Caribbean
## 6057      3.80     489668           NA      Asia              Western Asia
## 6058      1.49   23373155 3.492774e+10    Europe            Eastern Europe
## 6059      1.55  148322473 3.131723e+11    Europe            Eastern Europe
## 6060      6.77    6712924 1.726969e+09    Africa            Eastern Africa
## 6061      3.20     141934 5.824322e+08  Americas                 Caribbean
## 6062      2.86     108001 3.156626e+08  Americas                 Caribbean
## 6063      4.96     165568 1.874469e+08   Oceania                 Polynesia
## 6064      5.52   17398523 1.645272e+11      Asia              Western Asia
## 6065      6.40    7990736 3.595929e+09    Africa            Western Africa
## 6066      2.00    9702958 7.199339e+09    Europe           Southern Europe
## 6067      2.59      72706 4.351696e+08    Africa            Eastern Africa
## 6068      6.39    3929182 8.409340e+08    Africa            Western Africa
## 6069      1.72    3193042 5.482745e+10      Asia        South-Eastern Asia
## 6070      1.90    5317480 2.244835e+10    Europe            Eastern Europe
## 6071      1.38    2005535 1.439055e+10    Europe           Southern Europe
## 6072      5.60     329984 4.071869e+08   Oceania                 Melanesia
## 6073      3.41   38646788 1.074682e+11    Africa           Southern Africa
## 6074      1.28   39397403 4.557999e+11    Europe           Southern Europe
## 6075      2.39   17741793 1.072556e+10      Asia             Southern Asia
## 6076      6.03   21820588 8.091886e+09    Africa           Northern Africa
## 6077      2.64     423572 8.554383e+08  Americas             South America
## 6078      5.39     907947 1.196859e+09    Africa           Southern Africa
## 6079      2.08    8677787 1.964191e+11    Europe           Northern Europe
## 6080      1.54    6814186 2.228688e+11    Europe            Western Europe
## 6081      4.93   13186187 1.441230e+10      Asia              Western Asia
## 6082      4.95    5523207 1.490355e+09      Asia              Central Asia
## 6083      6.08   27203865 7.748086e+09    Africa            Eastern Africa
## 6084      2.00   57761574 9.311565e+10      Asia        South-Eastern Asia
## 6085      5.65     792846           NA      Asia        South-Eastern Asia
## 6086      6.08    3984356 9.940609e+08    Africa            Western Africa
## 6087      4.58      95421 1.516283e+08   Oceania                 Polynesia
## 6088      2.23    1237486 6.029473e+09  Americas                 Caribbean
## 6089      3.19    8603226 1.517451e+10    Africa           Northern Africa
## 6090      2.91   55811134 1.974518e+11      Asia              Western Asia
## 6091      4.07    3881973 3.448338e+09      Asia              Central Asia
## 6092      7.07   18571527 3.594786e+09    Africa            Eastern Africa
## 6093      1.69   51314080 5.950977e+10    Europe            Eastern Europe
## 6094      3.99    2019014 6.899452e+10      Asia              Western Asia
## 6095      1.79   57419469 1.094542e+12    Europe           Northern Europe
## 6096      2.04  257908206 7.285373e+12  Americas          Northern America
## 6097      2.49    3154853 1.825471e+10  Americas             South America
## 6098      3.93   21416399 1.240941e+10      Asia              Central Asia
## 6099      4.85     155242 2.059520e+08   Oceania                 Melanesia
## 6100      3.29   20799471 1.108681e+11  Americas             South America
## 6101      6.54    2287375           NA      Asia              Western Asia
## 6102      3.26   71129537 1.728906e+10      Asia        South-Eastern Asia
## 6103      8.31   13245003 6.388045e+09      Asia              Western Asia
## 6104      6.34    8576987 2.974040e+09    Africa            Eastern Africa
## 6105      4.84   11019717 5.398043e+09    Africa            Eastern Africa
## 6106      2.82    3189623 2.303358e+09    Europe           Southern Europe
## 6107      3.97   27785977 4.565576e+10    Africa           Northern Africa
## 6108      7.09   12246786 5.862329e+09    Africa             Middle Africa
## 6109      2.13      64868 6.377407e+08  Americas                 Caribbean
## 6110      2.88   34110912 2.433825e+11  Americas             South America
## 6111      2.30    3369673 1.321391e+09      Asia              Western Asia
## 6112      2.15      72498 1.291009e+09  Americas                 Caribbean
## 6113      1.86   17738428 3.115187e+11   Oceania Australia and New Zealand
## 6114      1.50    7874675 1.564361e+11    Europe            Western Europe
## 6115      2.80    7567156 5.292197e+09      Asia              Western Asia
## 6116      2.60     271165 4.728121e+09  Americas                 Caribbean
## 6117      3.34     535692 6.224264e+09      Asia              Western Asia
## 6118      4.03  113442354 3.347468e+10      Asia             Southern Asia
## 6119      1.73     263091 2.048027e+09  Americas                 Caribbean
## 6120      1.64   10216281 1.185440e+10    Europe            Eastern Europe
## 6121      1.60   10091889 1.912464e+11    Europe            Western Europe
## 6122      4.29     197615 6.161252e+08  Americas           Central America
## 6123      6.53    5582420 1.591894e+09    Africa            Western Africa
## 6124      5.00     518847 2.870936e+08      Asia             Southern Asia
## 6125      4.74    7273824 6.472081e+09  Americas             South America
## 6126      1.56    4141167           NA    Europe           Southern Europe
## 6127      4.25    1500356 3.639342e+09    Africa           Southern Africa
## 6128      2.58  157812220 5.306322e+11  Americas             South America
## 6129      3.20     279717 5.212467e+09      Asia        South-Eastern Asia
## 6130      1.51    8552429 1.218149e+10    Europe            Eastern Europe
## 6131      6.92    9552473 1.759538e+09    Africa            Western Africa
## 6132      7.42    6019901 1.013493e+09    Africa            Eastern Africa
## 6133      5.03   10007092 2.211084e+09      Asia        South-Eastern Asia
## 6134      6.17   13169100 7.933335e+09    Africa             Middle Africa
## 6135      1.68   28680921 5.494850e+11  Americas          Northern America
## 6136      4.86     368423 3.140268e+08    Africa            Western Africa
## 6137      5.65    3170848 7.605954e+08    Africa             Middle Africa
## 6138      7.40    6556628 1.092511e+09    Africa             Middle Africa
## 6139      2.51   13778676 5.246921e+10  Americas             South America
## 6140      1.95 1202982955 6.320649e+11      Asia              Eastern Asia
## 6141      2.97   36195170 8.488539e+10  Americas             South America
## 6142      5.29     453188 1.913545e+08    Africa            Eastern Africa
## 6143      7.25   39314955 5.432360e+09    Africa             Middle Africa
## 6144      5.20    2581306 2.907741e+09    Africa             Middle Africa
## 6145      2.92    3341005 1.151849e+10  Americas           Central America
## 6146      6.01   13499696 8.264709e+09    Africa            Western Africa
## 6147      1.54    4697536 1.611397e+10    Europe           Southern Europe
## 6148      1.65   10797556 2.372206e+10  Americas                 Caribbean
## 6149      2.28     818814 6.874501e+09      Asia              Western Asia
## 6150      1.59   10338381 4.957581e+10    Europe            Eastern Europe
## 6151      1.75    5190631 1.278614e+11    Europe           Northern Europe
## 6152      5.73     639215 5.898608e+08    Africa            Eastern Africa
## 6153      3.26    7611463 1.592675e+10  Americas                 Caribbean
## 6154      3.49   10951200 1.427714e+10  Americas             South America
## 6155      3.88   60108373 7.123258e+10    Africa           Northern Africa
## 6156      3.70    5461834 1.001380e+10  Americas           Central America
## 6157      5.90     418409 2.413793e+08    Africa             Middle Africa
## 6158      6.40    3150811 4.873892e+08    Africa            Eastern Africa
## 6159      1.60    1488120           NA    Europe           Northern Europe
## 6160      7.09   53477944 5.981545e+09    Africa            Eastern Africa
## 6161      3.33     755024 1.407835e+09   Oceania                 Melanesia
## 6162      1.81    5061465 8.939009e+10    Europe           Northern Europe
## 6163      1.72   57749881 1.111774e+12    Europe            Western Europe
## 6164      3.06     208349 2.898790e+09   Oceania                 Polynesia
## 6165      5.17    1031358 4.594705e+09    Africa             Middle Africa
## 6166      6.07    1008296 6.249515e+08    Africa            Western Africa
## 6167      2.01    5252850 2.505453e+09      Asia              Western Asia
## 6168      1.31   80675999 1.651063e+12    Europe            Western Europe
## 6169      5.28   15907244 3.746152e+09    Africa            Western Africa
## 6170      1.35   10433351 1.008384e+11    Europe           Southern Europe
## 6171      2.58      55845 8.064402e+08  Americas          Northern America
## 6172      3.40      98302 3.432551e+08  Americas                 Caribbean
## 6173      5.40    9860063 1.455561e+10  Americas           Central America
## 6174      6.44    7155564 2.324555e+09    Africa            Western Africa
## 6175      6.49    1129706 2.019330e+08    Africa            Western Africa
## 6176      2.47     719910 5.468102e+08  Americas             South America
## 6177      5.10    7530703 3.344578e+09  Americas                 Caribbean
## 6178      4.85    5318042 5.957784e+09  Americas           Central America
## 6179      1.17    5974379 1.369413e+11      Asia              Eastern Asia
## 6180      1.69   10363797 3.839665e+10    Europe            Eastern Europe
## 6181      2.17     262383 6.605972e+09    Europe           Northern Europe
## 6182      3.63  924475633 3.087333e+11      Asia             Southern Asia
## 6183      2.84  190873248 1.367276e+11      Asia        South-Eastern Asia
## 6184      3.81   58811858 8.121119e+10      Asia             Southern Asia
## 6185      5.61   19021967           NA      Asia              Western Asia
## 6186      1.90    3599451           NA    Europe           Northern Europe
## 6187      2.94    4985652 8.551919e+10      Asia              Western Asia
## 6188      1.26   57097411 9.557747e+11    Europe           Southern Europe
## 6189      2.82    2444388 8.831066e+09  Americas                 Caribbean
## 6190      1.47  123658854 4.413433e+12      Asia              Eastern Asia
## 6191      5.00    3957221 6.483917e+09      Asia              Western Asia
## 6192      2.48   16297681 2.016406e+10      Asia              Central Asia
## 6193      5.51   25824736 1.064719e+10    Africa            Eastern Africa
## 6194      4.53      75722 4.878925e+07   Oceania                Micronesia
## 6195      1.66   44031222 3.633685e+11      Asia              Eastern Asia
## 6196      2.18    1791511 3.018817e+10      Asia              Western Asia
## 6197      3.55    4507565 1.379643e+09      Asia              Central Asia
## 6198      5.78    4621685 1.108695e+09      Asia        South-Eastern Asia
## 6199      1.58    2568603 5.873669e+09    Europe           Northern Europe
## 6200      2.77    2900862 1.397203e+10      Asia              Western Asia
## 6201      4.69    1693459 5.724897e+08    Africa           Southern Africa
## 6202      6.27    2006349 1.524250e+08    Africa            Western Africa
## 6203      4.18    4691934           NA    Africa           Northern Africa
## 6204      1.78    3673906 9.872196e+09    Europe           Northern Europe
## 6205      1.67     396807 1.429471e+10    Europe            Western Europe
## 6206      1.39     385041 5.794891e+09      Asia              Eastern Asia
## 6207      2.11    1964924 3.189802e+09    Europe           Southern Europe
## 6208      6.13   12643864 3.160745e+09    Africa            Eastern Africa
## 6209      6.61    9697635 1.373814e+09    Africa            Eastern Africa
## 6210      3.42   19700762 6.187823e+10      Asia        South-Eastern Asia
## 6211      5.15     242252           NA      Asia             Southern Asia
## 6212      7.00    9131449 1.756127e+09    Africa            Western Africa
## 6213      2.00     365838 2.743403e+09    Europe           Southern Europe
## 6214      5.82    2202201 1.067612e+09    Africa            Western Africa
## 6215      2.22    1098598 3.186512e+09    Africa            Eastern Africa
## 6216      3.12   90887097 4.551157e+11  Americas           Central America
## 6217      4.77     103937 2.200501e+08   Oceania                Micronesia
## 6218      2.08    4369649 2.129051e+09    Europe            Eastern Europe
## 6219      3.18    2263204 9.144303e+08      Asia              Eastern Asia
## 6220      1.82     618851           NA    Europe           Southern Europe
## 6221      3.61   26314339 2.976663e+10    Africa           Northern Africa
## 6222      6.09   14775877 2.702958e+09    Africa            Eastern Africa
## 6223      4.84    1559480 2.943542e+09    Africa           Southern Africa
## 6224      4.91   20312687 3.882310e+09      Asia             Southern Asia
## 6225      1.57   15239262 2.974547e+11    Europe            Western Europe
## 6226      2.89     180554 2.415332e+09   Oceania                 Melanesia
## 6227      2.22    3564227 4.110618e+10   Oceania Australia and New Zealand
## 6228      4.38    4426577 2.814920e+09  Americas           Central America
## 6229      7.77    8732500 1.465008e+09    Africa            Western Africa
## 6230      6.35  103145093 3.853975e+10    Africa            Western Africa
## 6231      1.86    4309606 1.283268e+11    Europe           Northern Europe
## 6232      6.10    2066264 1.542967e+10      Asia              Western Asia
## 6233      5.63  116579605 5.785995e+10      Asia             Southern Asia
## 6234      2.95    2628511 8.854405e+09  Americas           Central America
## 6235      4.70    4480689 3.474465e+09   Oceania                 Melanesia
## 6236      4.27    4541902 6.527604e+09  Americas             South America
## 6237      3.51   23184222 3.846311e+10  Americas             South America
## 6238      4.11   66654954 6.224030e+10      Asia        South-Eastern Asia
## 6239      1.84   38485892 1.168545e+11    Europe            Eastern Europe
## 6240      1.49    9986828 9.050530e+10    Europe           Southern Europe
## 6241      2.15    3622652 4.596023e+10  Americas                 Caribbean
## 6242      3.72     492120           NA      Asia              Western Asia
## 6243      1.43   23255683 3.545561e+10    Europe            Eastern Europe
## 6244      1.37  148435811 2.860248e+11    Europe            Eastern Europe
## 6245      6.57    6300358 1.586935e+09    Africa            Eastern Africa
## 6246      3.09     143592 5.974179e+08  Americas                 Caribbean
## 6247      2.81     108097 3.161596e+08  Americas                 Caribbean
## 6248      4.88     167206 1.951323e+08   Oceania                 Polynesia
## 6249      5.35   17890529 1.645701e+11      Asia              Western Asia
## 6250      6.29    8234147 3.642705e+09    Africa            Western Africa
## 6251      1.94    9797838 5.002930e+09    Europe           Southern Europe
## 6252      2.51      74111 4.621355e+08    Africa            Eastern Africa
## 6253      6.32    3893891 8.525389e+08    Africa            Western Africa
## 6254      1.74    3291280 6.112140e+10      Asia        South-Eastern Asia
## 6255      1.81    5335292 2.161776e+10    Europe            Eastern Europe
## 6256      1.34    2000783 1.479973e+10    Europe           Southern Europe
## 6257      5.46     339490 4.233785e+08   Oceania                 Melanesia
## 6258      3.30   39619539 1.087939e+11    Africa           Southern Africa
## 6259      1.25   39518427 4.510983e+11    Europe           Southern Europe
## 6260      2.35   17929772 1.146562e+10      Asia             Southern Asia
## 6261      5.96   22829227 8.461584e+09    Africa           Northern Africa
## 6262      2.63     430901 7.933690e+08  Americas             South America
## 6263      5.21     926224 1.234035e+09    Africa           Southern Africa
## 6264      1.98    8737500 1.923772e+11    Europe           Northern Europe
## 6265      1.53    6890300 2.224558e+11    Europe            Western Europe
## 6266      4.76   13559642 1.515871e+10      Asia              Western Asia
## 6267      4.83    5616797 1.245936e+09      Asia              Central Asia
## 6268      6.01   28122799 7.841513e+09    Africa            Eastern Africa
## 6269      1.96   58237672 1.007987e+11      Asia        South-Eastern Asia
## 6270      5.87     820471           NA      Asia        South-Eastern Asia
## 6271      5.96    4081398 8.439992e+08    Africa            Western Africa
## 6272      4.55      95532 1.572963e+08   Oceania                 Polynesia
## 6273      2.13    1244410 5.942108e+09  Americas                 Caribbean
## 6274      3.01    8784888 1.550681e+10    Africa           Northern Africa
## 6275      2.84   56707454 2.125594e+11      Asia              Western Asia
## 6276      3.90    3991917 3.103504e+09      Asia              Central Asia
## 6277      7.06   19177660 3.894099e+09    Africa            Eastern Africa
## 6278      1.60   51216988 5.104384e+10    Europe            Eastern Europe
## 6279      3.78    2127863 6.986467e+10      Asia              Western Asia
## 6280      1.78   57575969 1.118866e+12    Europe           Northern Europe
## 6281      2.02  260527420 7.494650e+12  Americas          Northern America
## 6282      2.46    3178156 1.873983e+10  Americas             South America
## 6283      3.78   21852080 1.212399e+10      Asia              Central Asia
## 6284      4.81     159814 2.074982e+08   Oceania                 Melanesia
## 6285      3.22   21263994 1.111734e+11  Americas             South America
## 6286      6.49    2391070           NA      Asia              Western Asia
## 6287      3.07   72558986 1.868476e+10      Asia        South-Eastern Asia
## 6288      8.09   13948118 6.643693e+09      Asia              Western Asia
## 6289      6.29    8794061 3.176193e+09    Africa            Eastern Africa
## 6290      4.69   11256512 5.454802e+09    Africa            Eastern Africa
## 6291      2.77    3140634 2.494537e+09    Europe           Southern Europe
## 6292      3.71   28362015 4.524486e+10    Africa           Northern Africa
## 6293      7.05   12648483 6.067511e+09    Africa             Middle Africa
## 6294      2.17      66550 6.780945e+08  Americas                 Caribbean
## 6295      2.83   34558114 2.575868e+11  Americas             South America
## 6296      2.18    3289943 1.392747e+09      Asia              Western Asia
## 6297      2.11      76700 1.368478e+09  Americas                 Caribbean
## 6298      1.84   17932214 3.238739e+11   Oceania Australia and New Zealand
## 6299      1.47    7929911 1.601939e+11    Europe            Western Europe
## 6300      2.69    7675128 4.249634e+09      Asia              Western Asia
## 6301      2.57     275903 4.877005e+09  Americas                 Caribbean
## 6302      3.21     549151 6.208704e+09      Asia              Western Asia
## 6303      3.88  115913710 3.484202e+10      Asia             Southern Asia
## 6304      1.72     264015 2.129432e+09  Americas                 Caribbean
## 6305      1.55   10190064 1.046744e+10    Europe            Eastern Europe
## 6306      1.61   10130251 1.974179e+11    Europe            Western Europe
## 6307      4.20     201678 6.170983e+08  Americas           Central America
## 6308      6.45    5786794 1.661499e+09    Africa            Western Africa
## 6309      4.80     511382 2.971721e+08      Asia             Southern Asia
## 6310      4.66    7418864 6.774150e+09  Americas             South America
## 6311      1.54    3992256 1.342818e+09    Europe           Southern Europe
## 6312      4.12    1539135 3.771374e+09    Africa           Southern Africa
## 6313      2.54  160260508 5.589381e+11  Americas             South America
## 6314      3.06     287423 5.376420e+09      Asia        South-Eastern Asia
## 6315      1.42    8451626 1.240295e+10    Europe            Eastern Europe
## 6316      6.88    9816586 1.782676e+09    Africa            Western Africa
## 6317      7.37    6134041 9.746758e+08    Africa            Eastern Africa
## 6318      4.83   10355253 2.412281e+09      Asia        South-Eastern Asia
## 6319      6.08   13546823 7.735001e+09    Africa             Middle Africa
## 6320      1.69   28995822 5.758834e+11  Americas          Northern America
## 6321      4.71     378763 3.357873e+08    Africa            Western Africa
## 6322      5.62    3253698 7.978645e+08    Africa             Middle Africa
## 6323      7.42    6773104 1.203257e+09    Africa             Middle Africa
## 6324      2.45   13987999 5.546421e+10  Americas             South America
## 6325      1.81 1216067023 7.148654e+11      Asia              Eastern Asia
## 6326      2.92   36823539 8.983914e+10  Americas             South America
## 6327      5.26     466309 1.812573e+08    Africa            Eastern Africa
## 6328      7.27   40804011 5.220498e+09    Africa             Middle Africa
## 6329      5.17    2649964 2.747815e+09    Africa             Middle Africa
## 6330      2.84    3425692 1.206327e+10  Americas           Central America
## 6331      5.90   13953779 8.331753e+09    Africa            Western Africa
## 6332      1.52    4657799 1.705993e+10    Europe           Southern Europe
## 6333      1.63   10853435 2.389213e+10  Americas                 Caribbean
## 6334      2.21     837166 7.280097e+09      Asia              Western Asia
## 6335      1.49   10339439 5.067614e+10    Europe            Eastern Europe
## 6336      1.81    5211321 1.349262e+11    Europe           Northern Europe
## 6337      5.55     649878 5.843318e+08    Africa            Eastern Africa
## 6338      3.20    7753052 1.629358e+10  Americas                 Caribbean
## 6339      3.41   11196476 1.494848e+10  Americas             South America
## 6340      3.76   61272847 7.406278e+10    Africa           Northern Africa
## 6341      3.61    5528012 1.061966e+10  Americas           Central America
## 6342      5.90     433197 2.537274e+08    Africa             Middle Africa
## 6343      6.35    3147871 5.908200e+08    Africa            Eastern Africa
## 6344      1.51    1457145           NA    Europe           Northern Europe
## 6345      7.05   55366517 6.172368e+09    Africa            Eastern Africa
## 6346      3.31     765666 1.479635e+09   Oceania                 Melanesia
## 6347      1.85    5086499 9.265616e+10    Europe           Northern Europe
## 6348      1.72   57991973 1.136760e+12    Europe            Western Europe
## 6349      2.95     211584 2.921981e+09   Oceania                 Polynesia
## 6350      5.08    1058625 4.765295e+09    Africa             Middle Africa
## 6351      6.06    1036627 6.259161e+08    Africa            Western Africa
## 6352      1.95    5156079 2.244886e+09      Asia              Western Asia
## 6353      1.31   81206786 1.691873e+12    Europe            Western Europe
## 6354      5.17   16339344 3.869775e+09    Africa            Western Africa
## 6355      1.34   10542970 1.028551e+11    Europe           Southern Europe
## 6356      2.53      55817 8.542167e+08  Americas          Northern America
## 6357      3.25      99403 3.527063e+08  Americas                 Caribbean
## 6358      5.32   10106463 1.514275e+10  Americas           Central America
## 6359      6.38    7536389 2.416843e+09    Africa            Western Africa
## 6360      6.40    1155111 2.083949e+08    Africa            Western Africa
## 6361      2.48     723230 5.934165e+08  Americas             South America
## 6362      5.00    7674911 2.944880e+09  Americas                 Caribbean
## 6363      4.74    5455481 5.880139e+09  Americas           Central America
## 6364      1.11    6048585 1.451760e+11      Asia              Eastern Asia
## 6365      1.63   10361134 3.952826e+10    Europe            Eastern Europe
## 6366      2.15     264893 6.844373e+09    Europe           Northern Europe
## 6367      3.55  942604211 3.292916e+11      Asia             Southern Asia
## 6368      2.76  193939912 1.470369e+11      Asia        South-Eastern Asia
## 6369      3.49   59501292 8.092650e+10      Asia             Southern Asia
## 6370      5.51   19606895           NA      Asia              Western Asia
## 6371      1.90    3620616           NA    Europe           Northern Europe
## 6372      2.93    5163901 9.144723e+10      Asia              Western Asia
## 6373      1.25   57119163 9.763336e+11    Europe           Southern Europe
## 6374      2.78    2466903 8.953234e+09  Americas                 Caribbean
## 6375      1.44  124101546 4.451547e+12      Asia              Eastern Asia
## 6376      4.83    4154813 6.807207e+09      Asia              Western Asia
## 6377      2.36   16123445 1.762339e+10      Asia              Central Asia
## 6378      5.37   26608089 1.092750e+10    Africa            Eastern Africa
## 6379      4.48      76674 5.119776e+07   Oceania                Micronesia
## 6380      1.65   44342530 3.943875e+11      Asia              Eastern Asia
## 6381      2.30    1691891 3.273490e+10      Asia              Western Asia
## 6382      3.43    4543602 1.102540e+09      Asia              Central Asia
## 6383      5.60    4742685 1.199154e+09      Asia        South-Eastern Asia
## 6384      1.46    2525444 6.002297e+09    Europe           Northern Europe
## 6385      2.69    2974647 1.509023e+10      Asia              Western Asia
## 6386      4.62    1725118 6.049611e+08    Africa           Southern Africa
## 6387      6.21    2019148 1.192537e+08    Africa            Western Africa
## 6388      3.95    4785488           NA    Africa           Northern Africa
## 6389      1.71    3652120 8.908072e+09    Europe           Northern Europe
## 6390      1.69     402431 1.484090e+10    Europe            Western Europe
## 6391      1.31     391783 6.044072e+09      Asia              Eastern Asia
## 6392      2.05    1956165 3.133724e+09    Europe           Southern Europe
## 6393      6.07   13039754 3.158482e+09    Africa            Eastern Africa
## 6394      6.54    9725612 1.233133e+09    Africa            Eastern Africa
## 6395      3.39   20205992 6.757848e+10      Asia        South-Eastern Asia
## 6396      4.85     248263           NA      Asia             Southern Asia
## 6397      6.97    9383608 1.772146e+09    Africa            Western Africa
## 6398      1.97     369142 2.898435e+09    Europe           Southern Europe
## 6399      5.76    2266745 1.034935e+09    Africa            Western Africa
## 6400      2.18    1114140 3.318311e+09    Africa            Eastern Africa
## 6401      3.04   92663664 4.754059e+11  Americas           Central America
## 6402      4.72     106057 2.188739e+08   Oceania                Micronesia
## 6403      1.98    4357283 1.471174e+09    Europe            Eastern Europe
## 6404      2.94    2280495 9.339478e+08      Asia              Eastern Asia
## 6405      1.81     620088           NA    Europe           Southern Europe
## 6406      3.46   26747660 3.284986e+10    Africa           Northern Africa
## 6407      6.03   15363065 2.885826e+09    Africa            Eastern Africa
## 6408      4.72    1605828 3.158897e+09    Africa           Southern Africa
## 6409      4.82   20859421 4.201280e+09      Asia             Southern Asia
## 6410      1.57   15347792 3.062626e+11    Europe            Western Europe
## 6411      2.84     184883 2.477893e+09   Oceania                 Melanesia
## 6412      2.13    3623181 4.327964e+10   Oceania Australia and New Zealand
## 6413      4.23    4520727 2.908866e+09  Americas           Central America
## 6414      7.77    9039088 1.523675e+09    Africa            Western Africa
## 6415      6.30  105753088 3.857829e+10    Africa            Western Africa
## 6416      1.87    4334434 1.348092e+11    Europe           Northern Europe
## 6417      5.72    2139539 1.602769e+10      Asia              Western Asia
## 6418      5.50  119564925 6.002241e+10      Asia             Southern Asia
## 6419      2.92    2682720 9.106769e+09  Americas           Central America
## 6420      4.69    4596131 3.680921e+09   Oceania                 Melanesia
## 6421      4.18    4651222 6.770892e+09  Americas             South America
## 6422      3.41   23619358 4.339471e+10  Americas             South America
## 6423      4.06   68240134 6.497117e+10      Asia        South-Eastern Asia
## 6424      1.76   38553355 1.230393e+11    Europe            Eastern Europe
## 6425      1.49   10033600 9.137853e+10    Europe           Southern Europe
## 6426      2.12    3657368 4.788379e+10  Americas                 Caribbean
## 6427      3.65     495179           NA      Asia              Western Asia
## 6428      1.42   23115921 3.686328e+10    Europe            Eastern Europe
## 6429      1.40  148416292 2.500722e+11    Europe            Eastern Europe
## 6430      6.42    5995987 7.895307e+08    Africa            Eastern Africa
## 6431      2.98     145262 6.059083e+08  Americas                 Caribbean
## 6432      2.76     108129 3.066645e+08  Americas                 Caribbean
## 6433      4.82     168786 1.901718e+08   Oceania                 Polynesia
## 6434      5.17   18373412 1.656654e+11      Asia              Western Asia
## 6435      6.17    8475136 3.642073e+09    Africa            Western Africa
## 6436      1.89    9863781 5.128004e+09    Europe           Southern Europe
## 6437      2.42      75493 4.584444e+08    Africa            Eastern Africa
## 6438      6.26    3858559 8.359144e+08    Africa            Western Africa
## 6439      1.71    3389119 6.758502e+10      Asia        South-Eastern Asia
## 6440      1.72    5350643 2.295926e+10    Europe            Eastern Europe
## 6441      1.31    1995615 1.558818e+10    Europe           Southern Europe
## 6442      5.33     349250 4.623031e+08   Oceania                 Melanesia
## 6443      3.20   40558495 1.123124e+11    Africa           Southern Africa
## 6444      1.23   39641740 4.618489e+11    Europe           Southern Europe
## 6445      2.32   18099591 1.210770e+10      Asia             Southern Asia
## 6446      5.89   23805536 8.546727e+09    Africa           Northern Africa
## 6447      2.65     438280 8.191417e+08  Americas             South America
## 6448      5.04     944223 1.263660e+09    Africa           Southern Africa
## 6449      1.88    8788696 2.000965e+11    Europe           Northern Europe
## 6450      1.53    6959860 2.251049e+11    Europe            Western Europe
## 6451      4.62   13941025 1.631879e+10      Asia              Western Asia
## 6452      4.71    5702611 9.805520e+08      Asia              Central Asia
## 6453      5.95   29030288 7.964441e+09    Africa            Eastern Africa
## 6454      1.91   58722767 1.098576e+11      Asia        South-Eastern Asia
## 6455      6.13     842752           NA      Asia        South-Eastern Asia
## 6456      5.84    4180689 9.704506e+08    Africa            Western Africa
## 6457      4.50      95678 1.650864e+08   Oceania                 Polynesia
## 6458      2.04    1250316 6.153767e+09  Americas                 Caribbean
## 6459      2.84    8956590 1.599968e+10    Africa           Northern Africa
## 6460      2.77   57608769 2.026368e+11      Asia              Western Asia
## 6461      3.71    4095512 2.566598e+09      Asia              Central Asia
## 6462      7.04   19791266 4.143463e+09    Africa            Eastern Africa
## 6463      1.50   51052752 3.933742e+10    Europe            Eastern Europe
## 6464      3.58    2238281 7.468264e+10      Asia              Western Asia
## 6465      1.77   57736667 1.166756e+12    Europe           Northern Europe
## 6466      2.00  263301323 7.803020e+12  Americas          Northern America
## 6467      2.43    3201604 2.010434e+10  Americas             South America
## 6468      3.63   22276140 1.149354e+10      Asia              Central Asia
## 6469      4.78     164209 2.262900e+08   Oceania                 Melanesia
## 6470      3.15   21726808 1.085614e+11  Americas             South America
## 6471      6.40    2501613 2.907788e+09      Asia              Western Asia
## 6472      2.88   73923849 2.033630e+10      Asia        South-Eastern Asia
## 6473      7.84   14633091 7.090278e+09      Asia              Western Asia
## 6474      6.25    9018229 2.902233e+09    Africa            Eastern Africa
## 6475      4.55   11476807 5.958563e+09    Africa            Eastern Africa
## 6476      2.72    3106727 2.826310e+09    Europe           Southern Europe
## 6477      3.45   28904300 4.696416e+10    Africa           Northern Africa
## 6478      7.02   13042666 6.698532e+09    Africa             Middle Africa
## 6479      2.21      68349 6.497717e+08  Americas                 Caribbean
## 6480      2.77   34994818 2.502579e+11  Americas             South America
## 6481      1.80    3223173 1.488846e+09      Asia              Western Asia
## 6482      2.06      80326 1.522319e+09  Americas                 Caribbean
## 6483      1.82   18124770 3.366345e+11   Oceania Australia and New Zealand
## 6484      1.42    7972833 1.644678e+11    Europe            Western Europe
## 6485      2.56    7770806 3.748177e+09      Asia              Western Asia
## 6486      2.51     280151 5.090557e+09  Americas                 Caribbean
## 6487      3.10     563730 6.452705e+09      Asia              Western Asia
## 6488      3.73  118427768 3.655801e+10      Asia             Southern Asia
## 6489      1.73     264962 2.161164e+09  Americas                 Caribbean
## 6490      1.47   10159731 9.378826e+09    Europe            Eastern Europe
## 6491      1.61   10161914 2.021258e+11    Europe            Western Europe
## 6492      4.11     206962 6.210722e+08  Americas           Central America
## 6493      6.37    5985658 1.737998e+09    Africa            Western Africa
## 6494      4.60     508897 3.151125e+08      Asia             Southern Asia
## 6495      4.58    7566716 7.091064e+09  Americas             South America
## 6496      1.53    3879278 1.622124e+09    Europe           Southern Europe
## 6497      3.99    1576291 3.937459e+09    Africa           Southern Africa
## 6498      2.50  162755054 5.836254e+11  Americas             South America
## 6499      2.93     295010 5.617214e+09      Asia        South-Eastern Asia
## 6500      1.34    8358116 1.275770e+10    Europe            Eastern Europe
## 6501      6.84   10089876 1.884580e+09    Africa            Western Africa
## 6502      7.32    6239030 8.974815e+08    Africa            Eastern Africa
## 6503      4.62   10694459 2.567702e+09      Asia        South-Eastern Asia
## 6504      5.99   13929575 7.990256e+09    Africa             Middle Africa
## 6505      1.67   29299478 5.920566e+11  Americas          Northern America
## 6506      4.55     389156 3.609429e+08    Africa            Western Africa
## 6507      5.60    3335840 8.553108e+08    Africa             Middle Africa
## 6508      7.43    7001634 1.218136e+09    Africa             Middle Africa
## 6509      2.39   14193986 6.135871e+10  Americas             South America
## 6510      1.68 1227841281 7.927857e+11      Asia              Eastern Asia
## 6511      2.87   37441980 9.451296e+10  Americas             South America
## 6512      5.25     479574 1.878009e+08    Africa            Eastern Africa
## 6513      7.27   42183620 5.257041e+09    Africa             Middle Africa
## 6514      5.15    2721277 2.857728e+09    Africa             Middle Africa
## 6515      2.76    3510925 1.253626e+10  Americas           Central America
## 6516      5.81   14404340 8.925453e+09    Africa            Western Africa
## 6517      1.52    4616762 1.821180e+10    Europe           Southern Europe
## 6518      1.61   10906048 2.447921e+10  Americas                 Caribbean
## 6519      2.12     855389 7.724183e+09      Asia              Western Asia
## 6520      1.39   10335556 5.368508e+10    Europe            Eastern Europe
## 6521      1.81    5232582 1.390620e+11    Europe           Northern Europe
## 6522      5.35     661076 5.639487e+08    Africa            Eastern Africa
## 6523      3.13    7892420 1.718869e+10  Americas                 Caribbean
## 6524      3.34   11440576 1.521061e+10  Americas             South America
## 6525      3.66   62434527 7.750111e+10    Africa           Northern Africa
## 6526      3.53    5588743 1.129882e+10  Americas           Central America
## 6527      5.90     448332 2.899155e+08    Africa             Middle Africa
## 6528      6.29    3164095 6.077079e+08    Africa            Eastern Africa
## 6529      1.43    1433076 4.104911e+09    Europe           Northern Europe
## 6530      7.00   57237226 6.550580e+09    Africa            Eastern Africa
## 6531      3.28     775498 1.516626e+09   Oceania                 Melanesia
## 6532      1.81    5108176 9.632762e+10    Europe           Northern Europe
## 6533      1.72   58224051 1.160031e+12    Europe            Western Europe
## 6534      2.84     215200 2.936590e+09   Oceania                 Polynesia
## 6535      4.99    1086449 5.002313e+09    Africa             Middle Africa
## 6536      6.04    1065746 6.314357e+08    Africa            Western Africa
## 6537      1.88    5067143 2.303253e+09      Asia              Western Asia
## 6538      1.31   81612900 1.720246e+12    Europe            Western Europe
## 6539      5.06   16760991 4.028917e+09    Africa            Western Africa
## 6540      1.32   10641169 1.050148e+11    Europe           Southern Europe
## 6541      2.51      55809 8.860677e+08  Americas          Northern America
## 6542      3.12     100253 3.615378e+08  Americas                 Caribbean
## 6543      5.24   10357354 1.589209e+10  Americas           Central America
## 6544      6.31    7863033 2.528203e+09    Africa            Western Africa
## 6545      6.31    1180877 2.175642e+08    Africa            Western Africa
## 6546      2.49     726695 6.230061e+08  Americas             South America
## 6547      4.89    7819806 3.236355e+09  Americas                 Caribbean
## 6548      4.62    5591136 6.119048e+09  Americas           Central America
## 6549      1.04    6144498 1.485053e+11      Asia              Eastern Asia
## 6550      1.56   10351994 4.011704e+10    Europe            Eastern Europe
## 6551      2.13     267454 6.852352e+09    Europe           Northern Europe
## 6552      3.47  960874982 3.542337e+11      Asia             Southern Asia
## 6553      2.69  196957845 1.593827e+11      Asia        South-Eastern Asia
## 6554      3.20   60318632 8.307323e+10      Asia             Southern Asia
## 6555      5.42   20217759           NA      Asia              Western Asia
## 6556      1.90    3645333           NA    Europe           Northern Europe
## 6557      2.92    5331622 9.741680e+10      Asia              Western Asia
## 6558      1.24   57120136 1.004519e+12    Europe           Southern Europe
## 6559      2.74    2489540 9.163631e+09  Americas                 Caribbean
## 6560      1.41  124483305 4.538011e+12      Asia              Eastern Asia
## 6561      4.68    4320158 7.228361e+09      Asia              Western Asia
## 6562      2.24   15925913 1.617827e+10      Asia              Central Asia
## 6563      5.25   27373035 1.140899e+10    Africa            Eastern Africa
## 6564      4.41      77727 5.056583e+07   Oceania                Micronesia
## 6565      1.63   44652994 4.305486e+11      Asia              Eastern Asia
## 6566      2.47    1637031 3.432525e+10      Asia              Western Asia
## 6567      3.30    4592135 1.042740e+09      Asia              Central Asia
## 6568      5.40    4857774 1.283469e+09      Asia        South-Eastern Asia
## 6569      1.36    2487988 5.945589e+09    Europe           Northern Europe
## 6570      2.62    3033406 1.607637e+10      Asia              Western Asia
## 6571      4.55    1753824 6.157149e+08    Africa           Southern Africa
## 6572      6.16    2079921 1.141661e+08    Africa            Western Africa
## 6573      3.73    4878202           NA    Africa           Northern Africa
## 6574      1.64    3628079 9.201155e+09    Europe           Northern Europe
## 6575      1.71     408148 1.505345e+10    Europe            Western Europe
## 6576      1.24     398459 6.243526e+09      Asia              Eastern Asia
## 6577      1.99    1953544 3.098797e+09    Europe           Southern Europe
## 6578      6.00   13452526 3.212562e+09    Africa            Eastern Africa
## 6579      6.48    9822812 1.439422e+09    Africa            Eastern Africa
## 6580      3.34   20725374 7.422083e+10      Asia        South-Eastern Asia
## 6581      4.56     254070 4.203147e+08      Asia             Southern Asia
## 6582      6.95    9640643 1.882179e+09    Africa            Western Africa
## 6583      1.93     372391 3.082268e+09    Europe           Southern Europe
## 6584      5.70    2333966 1.136564e+09    Africa            Western Africa
## 6585      2.14    1128676 3.460591e+09    Africa            Eastern Africa
## 6586      2.97   94426946 4.458453e+11  Americas           Central America
## 6587      4.66     107556 2.350101e+08   Oceania                Micronesia
## 6588      1.88    4339082 1.450578e+09    Europe            Eastern Europe
## 6589      2.74    2298038 9.935003e+08      Asia              Eastern Asia
## 6590      1.82     620415           NA    Europe           Southern Europe
## 6591      3.31   27161889 3.068852e+10    Africa           Northern Africa
## 6592      5.98   15913101 2.963766e+09    Africa            Eastern Africa
## 6593      4.59    1654214 3.288836e+09    Africa           Southern Africa
## 6594      4.71   21390905 4.347000e+09      Asia             Southern Asia
## 6595      1.53   15450803 3.158056e+11    Europe            Western Europe
## 6596      2.77     189198 2.625081e+09   Oceania                 Melanesia
## 6597      2.11    3674886 4.515284e+10   Oceania Australia and New Zealand
## 6598      4.06    4612229 3.080833e+09  Americas           Central America
## 6599      7.77    9361912 1.563378e+09    Africa            Western Africa
## 6600      6.26  108424822 3.954275e+10    Africa            Western Africa
## 6601      1.87    4359788 1.404527e+11    Europe           Northern Europe
## 6602      5.35    2191864 1.682856e+10      Asia              Western Asia
## 6603      5.36  122599749 6.300109e+10      Asia             Southern Asia
## 6604      2.90    2738125 9.266290e+09  Americas           Central America
## 6605      4.67    4715929 3.558992e+09   Oceania                 Melanesia
## 6606      4.09    4760853 7.140058e+09  Americas             South America
## 6607      3.32   24038761 4.713052e+10  Americas             South America
## 6608      4.01   69835713 6.801097e+10      Asia        South-Eastern Asia
## 6609      1.68   38591860 1.315928e+11    Europe            Eastern Europe
## 6610      1.48   10078431 9.529207e+10    Europe           Southern Europe
## 6611      2.09    3689649 5.006227e+10  Americas                 Caribbean
## 6612      3.59     501019           NA      Asia              Western Asia
## 6613      1.35   22965125 3.950266e+10    Europe            Eastern Europe
## 6614      1.34  148293265 2.397104e+11    Europe            Eastern Europe
## 6615      6.31    5912755 1.067636e+09    Africa            Eastern Africa
## 6616      2.87     147040 6.258297e+08  Americas                 Caribbean
## 6617      2.70     108122 3.097366e+08  Americas                 Caribbean
## 6618      4.75     170158 2.026408e+08   Oceania                 Polynesia
## 6619      4.99   18853670 1.659983e+11      Asia              Western Asia
## 6620      6.05    8710746 3.837415e+09    Africa            Western Africa
## 6621      1.85    9884146 5.440812e+09    Europe           Southern Europe
## 6622      2.35      76703 4.546593e+08    Africa            Eastern Africa
## 6623      6.20    3837807 7.690579e+08    Africa            Western Africa
## 6624      1.67    3482635 7.250411e+10      Asia        South-Eastern Asia
## 6625      1.63    5362950 2.430088e+10    Europe            Eastern Europe
## 6626      1.29    1991487 1.615599e+10    Europe           Southern Europe
## 6627      5.20     359236 5.003211e+08   Oceania                 Melanesia
## 6628      3.11   41426810 1.158117e+11    Africa           Southern Africa
## 6629      1.21   39764267 4.745844e+11    Europe           Southern Europe
## 6630      2.29   18248435 1.277362e+10      Asia             Southern Asia
## 6631      5.82   24691970 9.059282e+09    Africa           Northern Africa
## 6632      2.68     445830 8.281622e+08  Americas             South America
## 6633      4.87     963428 1.324640e+09    Africa           Southern Africa
## 6634      1.73    8826720 2.079774e+11    Europe           Northern Europe
## 6635      1.52    7017042 2.258933e+11    Europe            Western Europe
## 6636      4.50   14331962 1.725713e+10      Asia              Western Asia
## 6637      4.59    5784330 8.589635e+08      Asia              Central Asia
## 6638      5.88   29903329 8.248765e+09    Africa            Eastern Africa
## 6639      1.87   59266089 1.200057e+11      Asia        South-Eastern Asia
## 6640      6.38     856439           NA      Asia        South-Eastern Asia
## 6641      5.73    4284286 1.046591e+09    Africa            Western Africa
## 6642      4.45      95889 1.712142e+08   Oceania                 Polynesia
## 6643      1.96    1255001 6.397138e+09  Americas                 Caribbean
## 6644      2.68    9113972 1.637594e+10    Africa           Northern Africa
## 6645      2.72   58522320 2.186011e+11      Asia              Western Asia
## 6646      3.51    4188010 2.381803e+09      Asia              Central Asia
## 6647      7.02   20412967 4.620924e+09    Africa            Eastern Africa
## 6648      1.41   50811673 3.453826e+10    Europe            Eastern Europe
## 6649      3.39    2350192 7.967733e+10      Asia              Western Asia
## 6650      1.76   57903790 1.202369e+12    Europe           Northern Europe
## 6651      1.98  266275528 8.001917e+12  Americas          Northern America
## 6652      2.40    3224807 1.981331e+10  Americas             South America
## 6653      3.46   22687456 1.139010e+10      Asia              Central Asia
## 6654      4.73     168236 2.285795e+08   Oceania                 Melanesia
## 6655      3.08   22188671 1.128514e+11  Americas             South America
## 6656      6.27    2618272 3.082509e+09      Asia              Western Asia
## 6657      2.68   75198975 2.227648e+10      Asia        South-Eastern Asia
## 6658      7.58   15266147 7.492252e+09      Asia              Western Asia
## 6659      6.21    9253527 2.820352e+09    Africa            Eastern Africa
## 6660      4.43   11683136 5.967979e+09    Africa            Eastern Africa
## 6661      2.67    3092034 3.083504e+09    Europe           Southern Europe
## 6662      3.21   29411839 4.888969e+10    Africa           Northern Africa
## 6663      6.98   13424813 7.448768e+09    Africa             Middle Africa
## 6664      2.25      70245 6.935635e+08  Americas                 Caribbean
## 6665      2.72   35419683 2.640889e+11  Americas             South America
## 6666      1.80    3173425 1.576173e+09      Asia              Western Asia
## 6667      2.02      83195 1.540994e+09  Americas                 Caribbean
## 6668      1.80   18318340 3.507106e+11   Oceania Australia and New Zealand
## 6669      1.45    8000453 1.685246e+11    Europe            Western Europe
## 6670      2.43    7852287 3.796903e+09      Asia              Western Asia
## 6671      2.44     283792 5.305558e+09  Americas                 Caribbean
## 6672      3.01     579855 6.717912e+09      Asia              Western Asia
## 6673      3.60  120987124 3.824771e+10      Asia             Southern Asia
## 6674      1.73     265940 2.200800e+09  Americas                 Caribbean
## 6675      1.40   10126941 9.641433e+09    Europe            Eastern Europe
## 6676      1.61   10185077 2.050049e+11    Europe            Western Europe
## 6677      4.01     213674 6.299456e+08  Americas           Central America
## 6678      6.28    6176318 1.834412e+09    Africa            Western Africa
## 6679      4.40     512377 3.346305e+08      Asia             Southern Asia
## 6680      4.48    7717445 7.400329e+09  Americas             South America
## 6681      1.52    3810649 3.065128e+09    Europe           Southern Europe
## 6682      3.87    1611827 4.156074e+09    Africa           Southern Africa
## 6683      2.47  165303155 5.961734e+11  Americas             South America
## 6684      2.80     302449 5.778895e+09      Asia        South-Eastern Asia
## 6685      1.28    8274662 1.160567e+10    Europe            Eastern Europe
## 6686      6.80   10372809 2.092162e+09    Africa            Western Africa
## 6687      7.27    6333415 8.256830e+08    Africa            Eastern Africa
## 6688      4.42   11022162 2.706675e+09      Asia        South-Eastern Asia
## 6689      5.90   14317191 8.389769e+09    Africa             Middle Africa
## 6690      1.63   29590952 6.016409e+11  Americas          Northern America
## 6691      4.39     399508 3.851036e+08    Africa            Western Africa
## 6692      5.57    3417163 8.210984e+08    Africa             Middle Africa
## 6693      7.43    7242018 1.245111e+09    Africa             Middle Africa
## 6694      2.32   14396020 6.590754e+10  Americas             South America
## 6695      1.59 1238234851 8.720642e+11      Asia              Eastern Asia
## 6696      2.82   38049040 9.645601e+10  Americas             South America
## 6697      5.25     492979 1.853752e+08    Africa            Eastern Africa
## 6698      7.25   43424997 5.203252e+09    Africa             Middle Africa
## 6699      5.15    2795903 2.980610e+09    Africa             Middle Africa
## 6700      2.69    3596733 1.264740e+10  Americas           Central America
## 6701      5.72   14852193 9.615330e+09    Africa            Western Africa
## 6702      1.51    4574853 1.928999e+10    Europe           Southern Europe
## 6703      1.61   10955372 2.639807e+10  Americas                 Caribbean
## 6704      2.04     873246 7.866990e+09      Asia              Western Asia
## 6705      1.31   10326682 5.612222e+10    Europe            Eastern Europe
## 6706      1.75    5254383 1.430037e+11    Europe           Northern Europe
## 6707      5.15     673202 5.407394e+08    Africa            Eastern Africa
## 6708      3.07    8029114 1.841448e+10  Americas                 Caribbean
## 6709      3.27   11683480 1.557579e+10  Americas             South America
## 6710      3.58   63595629 8.136743e+10    Africa           Northern Africa
## 6711      3.43    5643363 1.149160e+10  Americas           Central America
## 6712      5.89     463844 3.744022e+08    Africa             Middle Africa
## 6713      6.23    3202598 6.639746e+08    Africa            Eastern Africa
## 6714      1.38    1417786 4.346686e+09    Europe           Northern Europe
## 6715      6.94   59076414 7.364550e+09    Africa            Eastern Africa
## 6716      3.24     784479 1.589424e+09   Oceania                 Melanesia
## 6717      1.76    5126021 9.976598e+10    Europe           Northern Europe
## 6718      1.74   58443318 1.172415e+12    Europe            Western Europe
## 6719      2.75     219282 2.945400e+09   Oceania                 Polynesia
## 6720      4.90    1114879 5.183650e+09    Africa             Middle Africa
## 6721      6.02    1095839 6.454759e+08    Africa            Western Africa
## 6722      1.81    4989723 2.561218e+09      Asia              Western Asia
## 6723      1.32   81870772 1.733849e+12    Europe            Western Europe
## 6724      4.96   17169214 4.214346e+09    Africa            Western Africa
## 6725      1.31   10725634 1.074915e+11    Europe           Southern Europe
## 6726      2.49      55832 8.996213e+08  Americas          Northern America
## 6727      2.99     100796 3.762069e+08  Americas                 Caribbean
## 6728      5.15   10612300 1.636214e+10  Americas           Central America
## 6729      6.24    8124799 2.660236e+09    Africa            Western Africa
## 6730      6.21    1207006 2.428017e+08    Africa            Western Africa
## 6731      2.51     730193 6.721206e+08  Americas             South America
## 6732      4.78    7965548 3.370239e+09  Americas                 Caribbean
## 6733      4.49    5724587 6.339043e+09  Americas           Central America
## 6734      0.98    6267295 1.547320e+11      Asia              Eastern Asia
## 6735      1.49   10334876 4.018158e+10    Europe            Eastern Europe
## 6736      2.10     270089 7.180241e+09    Europe           Northern Europe
## 6737      3.40  979290432 3.809767e+11      Asia             Southern Asia
## 6738      2.63  199926615 1.715639e+11      Asia        South-Eastern Asia
## 6739      2.95   61306632 8.897204e+10      Asia             Southern Asia
## 6740      5.32   20855408           NA      Asia              Western Asia
## 6741      1.91    3673553           NA    Europe           Northern Europe
## 6742      2.92    5486219 1.027650e+11      Asia              Western Asia
## 6743      1.23   57091906 1.015917e+12    Europe           Southern Europe
## 6744      2.71    2512340 9.153209e+09  Americas                 Caribbean
## 6745      1.39  124794817 4.656456e+12      Asia              Eastern Asia
## 6746      4.53    4448113 7.379252e+09      Asia              Western Asia
## 6747      2.13   15704673 1.625916e+10      Asia              Central Asia
## 6748      5.17   28116027 1.188211e+10    Africa            Eastern Africa
## 6749      4.33      78907 5.361489e+07   Oceania                Micronesia
## 6750      1.59   44967346 4.606811e+11      Asia              Eastern Asia
## 6751      2.64    1637906 3.453296e+10      Asia              Western Asia
## 6752      3.17    4656894 1.116613e+09      Asia              Central Asia
## 6753      5.17    4966303 1.372392e+09      Asia        South-Eastern Asia
## 6754      1.28    2458305 6.170981e+09    Europe           Northern Europe
## 6755      2.54    3070974 1.690214e+10      Asia              Western Asia
## 6756      4.48    1779201 6.444845e+08    Africa           Southern Africa
## 6757      6.11    2197801 1.280044e+08    Africa            Western Africa
## 6758      3.54    4970391           NA    Africa           Northern Africa
## 6759      1.57    3602164 9.678020e+09    Europe           Northern Europe
## 6760      1.72     414000 1.528189e+10    Europe            Western Europe
## 6761      1.18     405231 6.218552e+09      Asia              Eastern Asia
## 6762      1.92    1958303 3.135512e+09    Europe           Southern Europe
## 6763      5.92   13882646 3.281597e+09    Africa            Eastern Africa
## 6764      6.45   10006767 1.544740e+09    Africa            Eastern Africa
## 6765      3.28   21260881 8.164492e+10      Asia        South-Eastern Asia
## 6766      4.29     259668 4.584921e+08      Asia             Southern Asia
## 6767      6.92    9901045 1.942755e+09    Africa            Western Africa
## 6768      1.88     375610 3.198696e+09    Europe           Southern Europe
## 6769      5.63    2403779 1.202699e+09    Africa            Western Africa
## 6770      2.11    1141949 3.653963e+09    Africa            Eastern Africa
## 6771      2.90   96181710 4.687609e+11  Americas           Central America
## 6772      4.61     108342 2.277284e+08   Oceania                Micronesia
## 6773      1.80    4314693 1.375148e+09    Europe            Eastern Europe
## 6774      2.57    2316571 1.015706e+09      Asia              Eastern Asia
## 6775      1.82     619696           NA    Europe           Southern Europe
## 6776      3.17   27556892 3.443771e+10    Africa           Northern Africa
## 6777      5.93   16410777 3.183084e+09    Africa            Eastern Africa
## 6778      4.47    1705349 3.393925e+09    Africa           Southern Africa
## 6779      4.60   21902534 4.578620e+09      Asia             Southern Asia
## 6780      1.53   15546647 3.265636e+11    Europe            Western Europe
## 6781      2.70     193471 2.636891e+09   Oceania                 Melanesia
## 6782      2.07    3717239 4.677831e+10   Oceania Australia and New Zealand
## 6783      3.88    4700777 3.276287e+09  Americas           Central America
## 6784      7.77    9701730 1.616831e+09    Africa            Western Africa
## 6785      6.22  111164651 4.124309e+10    Africa            Western Africa
## 6786      1.89    4385951 1.476155e+11    Europe           Northern Europe
## 6787      4.98    2219768 1.734115e+10      Asia              Western Asia
## 6788      5.21  125697651 6.605449e+10      Asia             Southern Asia
## 6789      2.88    2794845 9.526727e+09  Americas           Central America
## 6790      4.65    4840311 3.834234e+09   Oceania                 Melanesia
## 6791      4.01    4870695 7.168801e+09  Americas             South America
## 6792      3.23   24441076 4.831737e+10  Americas             South America
## 6793      3.96   71437381 7.198681e+10      Asia        South-Eastern Asia
## 6794      1.60   38599825 1.398028e+11    Europe            Eastern Europe
## 6795      1.48   10119985 9.880676e+10    Europe           Southern Europe
## 6796      2.05    3719446 5.122034e+10  Americas                 Caribbean
## 6797      3.53     511864           NA      Asia              Western Asia
## 6798      1.32   22804526 4.108628e+10    Europe            Eastern Europe
## 6799      1.27  148078355 2.310808e+11    Europe            Eastern Europe
## 6800      6.23    6097688 1.203713e+09    Africa            Eastern Africa
## 6801      2.76     148962 6.597323e+08  Americas                 Caribbean
## 6802      2.64     108078 3.138875e+08  Americas                 Caribbean
## 6803      4.69     171276 2.173815e+08   Oceania                 Polynesia
## 6804      4.80   19331311 1.716154e+11      Asia              Western Asia
## 6805      5.94    8939438 3.914629e+09    Africa            Western Africa
## 6806      1.80    9851958 5.865195e+09    Europe           Southern Europe
## 6807      2.28      77678 4.770173e+08    Africa            Eastern Africa
## 6808      6.15    3833053 8.075108e+08    Africa            Western Africa
## 6809      1.66    3570080 7.803368e+10      Asia        South-Eastern Asia
## 6810      1.54    5372115 2.598769e+10    Europe            Eastern Europe
## 6811      1.27    1989042 1.674532e+10    Europe           Southern Europe
## 6812      5.08     369438 5.083521e+08   Oceania                 Melanesia
## 6813      3.04   42210216 1.207994e+11    Africa           Southern Africa
## 6814      1.20   39878881 4.860551e+11    Europe           Southern Europe
## 6815      2.27   18373530 1.325902e+10      Asia             Southern Asia
## 6816      5.75   25466387 9.595512e+09    Africa           Northern Africa
## 6817      2.72     453653 8.386860e+08  Americas             South America
## 6818      4.71     984506 1.375533e+09    Africa           Southern Africa
## 6819      1.60    8849420 2.113305e+11    Europe           Northern Europe
## 6820      1.50    7059633 2.273129e+11    Europe            Western Europe
## 6821      4.39   14736209 1.801644e+10      Asia              Western Asia
## 6822      4.46    5862224 7.155166e+08      Asia              Central Asia
## 6823      5.83   30733937 8.623619e+09    Africa            Eastern Africa
## 6824      1.82   59878955 1.270877e+11      Asia        South-Eastern Asia
## 6825      6.63     859496           NA      Asia        South-Eastern Asia
## 6826      5.62    4392941 1.139070e+09    Africa            Western Africa
## 6827      4.39      96174 1.712317e+08   Oceania                 Polynesia
## 6828      1.90    1258365 6.649611e+09  Americas                 Caribbean
## 6829      2.52    9256036 1.754617e+10    Africa           Northern Africa
## 6830      2.66   59451488 2.347331e+11      Asia              Western Asia
## 6831      3.33    4267690 2.222222e+09      Asia              Central Asia
## 6832      6.99   21041468 5.040140e+09    Africa            Eastern Africa
## 6833      1.33   50489566 3.108443e+10    Europe            Eastern Europe
## 6834      3.22    2467726 8.429735e+10      Asia              Western Asia
## 6835      1.74   58079322 1.237061e+12    Europe           Northern Europe
## 6836      1.98  269483224 8.304875e+12  Americas          Northern America
## 6837      2.36    3248039 2.091849e+10  Americas             South America
## 6838      3.30   23087174 1.158373e+10      Asia              Central Asia
## 6839      4.68     171802 2.339019e+08   Oceania                 Melanesia
## 6840      3.02   22649212 1.126281e+11  Americas             South America
## 6841      6.11    2742127 3.171896e+09      Asia              Western Asia
## 6842      2.48   76375677 2.435711e+10      Asia        South-Eastern Asia
## 6843      7.31   15834747 7.839516e+09      Asia              Western Asia
## 6844      6.18    9502346 3.016244e+09    Africa            Eastern Africa
## 6845      4.33   11877664 6.586304e+09    Africa            Eastern Africa
## 6846      2.61    3092471 2.768987e+09    Europe           Southern Europe
## 6847      2.99   29887717 4.942748e+10    Africa           Northern Africa
## 6848      6.95   13801868 8.037220e+09    Africa             Middle Africa
## 6849      2.28      72232 7.274499e+08  Americas                 Caribbean
## 6850      2.66   35833965 2.855093e+11  Americas             South America
## 6851      1.70    3137652 1.628519e+09      Asia              Western Asia
## 6852      1.98      85447 1.660899e+09  Americas                 Caribbean
## 6853      1.78   18512971 3.646424e+11   Oceania Australia and New Zealand
## 6854      1.39    8015256 1.724157e+11    Europe            Western Europe
## 6855      2.30    7921789 4.017124e+09      Asia              Western Asia
## 6856      2.36     286968 5.414972e+09  Americas                 Caribbean
## 6857      2.93     597834 6.925697e+09      Asia              Western Asia
## 6858      3.47  123574107 4.030833e+10      Asia             Southern Asia
## 6859      1.74     266944 2.341535e+09  Americas                 Caribbean
## 6860      1.34   10091181 1.074056e+10    Europe            Eastern Europe
## 6861      1.61   10201758 2.126616e+11    Europe            Western Europe
## 6862      3.91     221608 6.522784e+08  Americas           Central America
## 6863      6.21    6361301 1.947193e+09    Africa            Western Africa
## 6864      4.21     520917 3.526894e+08      Asia             Southern Asia
## 6865      4.39    7870860 7.766957e+09  Americas             South America
## 6866      1.50    3779354 4.119212e+09    Europe           Southern Europe
## 6867      3.75    1645846 4.578732e+09    Africa           Southern Africa
## 6868      2.45  167893835 6.162939e+11  Americas             South America
## 6869      2.68     309746 5.693878e+09      Asia        South-Eastern Asia
## 6870      1.23    8199923 1.141470e+10    Europe            Eastern Europe
## 6871      6.75   10665781 2.224320e+09    Africa            Western Africa
## 6872      7.22    6420397 8.125546e+08    Africa            Eastern Africa
## 6873      4.24   11338733 2.858784e+09      Asia        South-Eastern Asia
## 6874      5.82   14709961 8.817647e+09    Africa             Middle Africa
## 6875      1.57   29871092 6.270657e+11  Americas          Northern America
## 6876      4.22     409805 4.145233e+08    Africa            Western Africa
## 6877      5.55    3497910 8.646166e+08    Africa             Middle Africa
## 6878      7.42    7494143 1.315502e+09    Africa             Middle Africa
## 6879      2.25   14594070 7.026111e+10  Americas             South America
## 6880      1.52 1247259143 9.531662e+11      Asia              Eastern Asia
## 6881      2.78   38645409 9.976473e+10  Americas             South America
## 6882      5.27     506525 1.928464e+08    Africa            Eastern Africa
## 6883      7.23   44558347 4.910983e+09    Africa             Middle Africa
## 6884      5.14    2873638 2.962727e+09    Africa             Middle Africa
## 6885      2.62    3682725 1.335290e+10  Americas           Central America
## 6886      5.63   15296390 1.016524e+10    Africa            Western Africa
## 6887      1.51    4532298 2.055226e+10    Europe           Southern Europe
## 6888      1.61   11000431 2.713326e+10  Americas                 Caribbean
## 6889      1.95     890733 8.051748e+09      Asia              Western Asia
## 6890      1.23   10313836 5.564376e+10    Europe            Eastern Europe
## 6891      1.75    5276683 1.475776e+11    Europe           Northern Europe
## 6892      4.95     685644 5.367062e+08    Africa            Eastern Africa
## 6893      3.01    8163474 1.988842e+10  Americas                 Caribbean
## 6894      3.21   11924991 1.620711e+10  Americas             South America
## 6895      3.51   64754566 8.583542e+10    Africa           Northern Africa
## 6896      3.32    5692300 1.197953e+10  Americas           Central America
## 6897      5.87     479836 6.409315e+08    Africa             Middle Africa
## 6898      6.16    3260612 7.164862e+08    Africa            Eastern Africa
## 6899      1.34    1409718 4.856829e+09    Europe           Northern Europe
## 6900      6.86   60893264 7.595360e+09    Africa            Eastern Africa
## 6901      3.21     792859 1.554456e+09   Oceania                 Melanesia
## 6902      1.75    5140755 1.059573e+11    Europe           Northern Europe
## 6903      1.75   58652709 1.198017e+12    Europe            Western Europe
## 6904      2.66     223734 3.001363e+09   Oceania                 Polynesia
## 6905      4.81    1143838 5.481107e+09    Africa             Middle Africa
## 6906      6.00    1126786 6.771043e+08    Africa            Western Africa
## 6907      1.75    4921287 2.830633e+09      Asia              Western Asia
## 6908      1.33   81993831 1.763971e+12    Europe            Western Europe
## 6909      4.87   17568583 4.391195e+09    Africa            Western Africa
## 6910      1.29   10798190 1.114016e+11    Europe           Southern Europe
## 6911      2.69      55876 9.128361e+08  Americas          Northern America
## 6912      2.87     101125 3.935457e+08  Americas                 Caribbean
## 6913      5.06   10871786 1.707620e+10  Americas           Central America
## 6914      6.16    8331366 2.783956e+09    Africa            Western Africa
## 6915      6.12    1233520 2.585838e+08    Africa            Western Africa
## 6916      2.52     733854 7.139732e+08  Americas             South America
## 6917      4.67    8111954 3.461447e+09  Americas                 Caribbean
## 6918      4.37    5855946 6.655597e+09  Americas           Central America
## 6919      0.92    6411273 1.625556e+11      Asia              Eastern Asia
## 6920      1.43   10311227 4.143813e+10    Europe            Eastern Europe
## 6921      2.07     272798 7.533020e+09    Europe           Northern Europe
## 6922      3.33  997817250 3.964056e+11      Asia             Southern Asia
## 6923      2.58  202853850 1.796272e+11      Asia        South-Eastern Asia
## 6924      2.72   62426086 9.198357e+10      Asia             Southern Asia
## 6925      5.23   21519356 1.606066e+10      Asia              Western Asia
## 6926      1.92    3706032           NA    Europe           Northern Europe
## 6927      2.93    5630066 1.062298e+11      Asia              Western Asia
## 6928      1.22   57044614 1.034874e+12    Europe           Southern Europe
## 6929      2.68    2535443 9.048821e+09  Americas                 Caribbean
## 6930      1.37  125048424 4.730755e+12      Asia              Eastern Asia
## 6931      4.40    4545248 7.623330e+09      Asia              Western Asia
## 6932      2.05   15465649 1.653557e+10      Asia              Central Asia
## 6933      5.10   28842245 1.193854e+10    Africa            Eastern Africa
## 6934      4.24      80190 5.655059e+07   Oceania                Micronesia
## 6935      1.54   45283939 4.821072e+11      Asia              Eastern Asia
## 6936      2.79    1686256 3.538708e+10      Asia              Western Asia
## 6937      3.04    4734761 1.227327e+09      Asia              Central Asia
## 6938      4.92    5068658 1.466704e+09      Asia        South-Eastern Asia
## 6939      1.22    2434628 6.682110e+09    Europe           Northern Europe
## 6940      2.47    3092684 1.651562e+10      Asia              Western Asia
## 6941      4.39    1801695 6.666371e+08    Africa           Southern Africa
## 6942      6.06    2365290 2.640472e+08    Africa            Western Africa
## 6943      3.38    5062160           NA    Africa           Northern Africa
## 6944      1.50    3574014 1.040089e+10    Europe           Northern Europe
## 6945      1.72     419974 1.618949e+10    Europe            Western Europe
## 6946      1.12     412031 6.199896e+09      Asia              Eastern Asia
## 6947      1.85    1969345 3.180668e+09    Europe           Southern Europe
## 6948      5.84   14329239 3.402802e+09    Africa            Eastern Africa
## 6949      6.41   10260421 1.603323e+09    Africa            Eastern Africa
## 6950      3.19   21808125 8.762356e+10      Asia        South-Eastern Asia
## 6951      4.02     265067 5.061940e+08      Asia             Southern Asia
## 6952      6.90   10168000 2.074106e+09    Africa            Western Africa
## 6953      1.82     378789 3.366851e+09    Europe           Southern Europe
## 6954      5.57    2476188 1.154053e+09    Africa            Western Africa
## 6955      2.07    1154137 3.861782e+09    Africa            Eastern Africa
## 6956      2.83   97925825 5.005221e+11  Americas           Central America
## 6957      4.54     108506 2.141808e+08   Oceania                Micronesia
## 6958      1.73    4284931 1.397150e+09    Europe            Eastern Europe
## 6959      2.43    2335694 1.055285e+09      Asia              Eastern Asia
## 6960      1.82     618192 1.004514e+09    Europe           Southern Europe
## 6961      3.03   27934014 3.367053e+10    Africa           Northern Africa
## 6962      5.88   16872896 3.508986e+09    Africa            Eastern Africa
## 6963      4.35    1758097 3.537064e+09    Africa           Southern Africa
## 6964      4.47   22395247 4.809777e+09      Asia             Southern Asia
## 6965      1.56   15636131 3.405355e+11    Europe            Western Europe
## 6966      2.62     197706 2.689817e+09   Oceania                 Melanesia
## 6967      2.05    3752102 4.760511e+10   Oceania Australia and New Zealand
## 6968      3.70    4786641 3.406250e+09  Americas           Central America
## 6969      7.77   10058960 1.661358e+09    Africa            Western Africa
## 6970      6.19  113975055 4.235665e+10    Africa            Western Africa
## 6971      1.86    4412958 1.555758e+11    Europe           Northern Europe
## 6972      4.63    2227596 1.838743e+10      Asia              Western Asia
## 6973      5.04  128845692 6.672455e+10      Asia             Southern Asia
## 6974      2.87    2852739 1.014225e+10  Americas           Central America
## 6975      4.63    4969116 3.684531e+09   Oceania                 Melanesia
## 6976      3.92    4980346 7.383289e+09  Americas             South America
## 6977      3.14   24827409 5.163390e+10  Americas             South America
## 6978      3.92   73042605 7.571959e+10      Asia        South-Eastern Asia
## 6979      1.52   38583109 1.497096e+11    Europe            Eastern Europe
## 6980      1.48   10159662 1.031611e+11    Europe           Southern Europe
## 6981      2.01    3746634 5.372007e+10  Americas                 Caribbean
## 6982      3.48     528213           NA      Asia              Western Asia
## 6983      1.30   22633398 3.857888e+10    Europe            Eastern Europe
## 6984      1.22  147772805 2.343160e+11    Europe            Eastern Europe
## 6985      6.16    6506118 1.370424e+09    Africa            Eastern Africa
## 6986      2.64     150994 6.623953e+08  Americas                 Caribbean
## 6987      2.58     108001 3.555553e+08  Americas                 Caribbean
## 6988      4.64     172191 2.191281e+08   Oceania                 Polynesia
## 6989      4.59   19809633 1.760648e+11      Asia              Western Asia
## 6990      5.84    9163184 4.036923e+09    Africa            Western Africa
## 6991      1.76    9775008 6.457580e+09    Europe           Southern Europe
## 6992      2.22      78474 5.340760e+08    Africa            Eastern Africa
## 6993      6.10    3843472 6.723337e+08    Africa            Western Africa
## 6994      1.61    3653151 8.467238e+10      Asia        South-Eastern Asia
## 6995      1.46    5378490 2.714195e+10    Europe            Eastern Europe
## 6996      1.25    1988077 1.757544e+10    Europe           Southern Europe
## 6997      4.97     379859 5.010335e+08   Oceania                 Melanesia
## 6998      2.98   42921506 1.239967e+11    Africa           Southern Africa
## 6999      1.20   39996221 5.048591e+11    Europe           Southern Europe
## 7000      2.25   18478024 1.410831e+10      Asia             Southern Asia
## 7001      5.67   26149124 1.060944e+10    Africa           Northern Africa
## 7002      2.75     461569 8.867950e+08  Americas             South America
## 7003      4.56    1006760 1.418213e+09    Africa           Southern Africa
## 7004      1.53    8859106 2.170542e+11    Europe           Northern Europe
## 7005      1.49    7090176 2.320311e+11    Europe            Western Europe
## 7006      4.28   15151962 1.834073e+10      Asia              Western Asia
## 7007      4.33    5936780 7.276804e+08      Asia              Central Asia
## 7008      5.78   31533781 8.927626e+09    Africa            Eastern Africa
## 7009      1.78   60544937 1.253448e+11      Asia        South-Eastern Asia
## 7010      6.83     853867           NA      Asia        South-Eastern Asia
## 7011      5.52    4506465 1.302838e+09    Africa            Western Africa
## 7012      4.34      96526 1.710064e+08   Oceania                 Polynesia
## 7013      1.84    1260677 6.829448e+09  Americas                 Caribbean
## 7014      2.39    9384151 1.850085e+10    Africa           Northern Africa
## 7015      2.61   60394104 2.525204e+11      Asia              Western Asia
## 7016      3.16    4335991 1.971111e+09      Asia              Central Asia
## 7017      6.97   21679497 5.297187e+09    Africa            Eastern Africa
## 7018      1.26   50096497 3.015190e+10    Europe            Eastern Europe
## 7019      3.05    2595220 9.120164e+10      Asia              Western Asia
## 7020      1.73   58263858 1.313849e+12    Europe           Northern Europe
## 7021      1.97  272882865 8.679071e+12  Americas          Northern America
## 7022      2.33    3271014 2.270654e+10  Americas             South America
## 7023      3.14   23474760 1.218609e+10      Asia              Central Asia
## 7024      4.61     175004 2.453941e+08   Oceania                 Melanesia
## 7025      2.97   23108003 1.198036e+11  Americas             South America
## 7026      5.93    2871637 3.573173e+09      Asia              Western Asia
## 7027      2.31   77460429 2.634272e+10      Asia        South-Eastern Asia
## 7028      7.05   16349809 8.249610e+09      Asia              Western Asia
## 7029      6.15    9763742 3.115744e+09    Africa            Eastern Africa
## 7030      4.24   12059858 6.762856e+09    Africa            Eastern Africa
## 7031      2.54    3102898 3.120648e+09    Europe           Southern Europe
## 7032      2.79   30336880 5.194828e+10    Africa           Northern Africa
## 7033      6.91   14187710 8.584134e+09    Africa             Middle Africa
## 7034      2.30      74206 7.595135e+08  Americas                 Caribbean
## 7035      2.60   36241578 2.965019e+11  Americas             South America
## 7036      1.50    3112958 1.747401e+09      Asia              Western Asia
## 7037      1.94      87276 1.771982e+09  Americas                 Caribbean
## 7038      1.76   18709175 3.813632e+11   Oceania Australia and New Zealand
## 7039      1.37    8023166 1.789426e+11    Europe            Western Europe
## 7040      2.19    7984531 4.418836e+09      Asia              Western Asia
## 7041      2.26     290054 5.670368e+09  Americas                 Caribbean
## 7042      2.86     618054 7.257438e+09      Asia              Western Asia
## 7043      3.35  126169583 4.241546e+10      Asia             Southern Asia
## 7044      1.75     267949 2.437827e+09  Americas                 Caribbean
## 7045      1.29   10051298 1.164276e+10    Europe            Eastern Europe
## 7046      1.61   10216867 2.167637e+11    Europe            Western Europe
## 7047      3.80     230289 6.766798e+08  Americas           Central America
## 7048      6.13    6546493 2.035610e+09    Africa            Western Africa
## 7049      4.01     533506 3.723330e+08      Asia             Southern Asia
## 7050      4.30    8026257 8.157585e+09  Americas             South America
## 7051      1.47    3775898 4.761809e+09    Europe           Southern Europe
## 7052      3.63    1678111 5.062855e+09    Africa           Southern Africa
## 7053      2.43  170516482 6.165273e+11  Americas             South America
## 7054      2.57     316873 5.662077e+09      Asia        South-Eastern Asia
## 7055      1.20    8131743 1.196961e+10    Europe            Eastern Europe
## 7056      6.70   10969093 2.386867e+09    Africa            Western Africa
## 7057      7.17    6511920 8.511510e+08    Africa            Eastern Africa
## 7058      4.06   11641509 3.001982e+09      Asia        South-Eastern Asia
## 7059      5.75   15108630 9.261991e+09    Africa             Middle Africa
## 7060      1.56   30145148 6.527593e+11  Americas          Northern America
## 7061      4.05     419884 4.493971e+08    Africa            Western Africa
## 7062      5.52    3577028 9.052535e+08    Africa             Middle Africa
## 7063      7.41    7760157 1.406950e+09    Africa             Middle Africa
## 7064      2.19   14788609 7.253116e+10  Americas             South America
## 7065      1.48 1255262566 1.027513e+12      Asia              Eastern Asia
## 7066      2.73   39234059 1.003332e+11  Americas             South America
## 7067      5.29     520180 1.953200e+08    Africa            Eastern Africa
## 7068      7.19   45647949 4.831221e+09    Africa             Middle Africa
## 7069      5.14    2953011 3.072347e+09    Africa             Middle Africa
## 7070      2.55    3767369 1.447425e+10  Americas           Central America
## 7071      5.55   15728482 1.064834e+10    Africa            Western Africa
## 7072      1.49    4491742 2.095853e+10    Europe           Southern Europe
## 7073      1.62   11041893 2.717551e+10  Americas                 Caribbean
## 7074      1.86     908040 8.457819e+09      Asia              Western Asia
## 7075      1.18   10297977 5.551245e+10    Europe            Eastern Europe
## 7076      1.72    5298680 1.507660e+11    Europe           Northern Europe
## 7077      4.77     698256 5.372396e+08    Africa            Eastern Africa
## 7078      2.97    8296375 2.128272e+10  Americas                 Caribbean
## 7079      3.16   12163887 1.654953e+10  Americas             South America
## 7080      3.44   65922626 8.930006e+10    Africa           Northern Africa
## 7081      3.20    5736075 1.242870e+10  Americas           Central America
## 7082      5.85     496330 7.813654e+08    Africa             Middle Africa
## 7083      6.09    3337227 7.291865e+08    Africa            Eastern Africa
## 7084      1.32    1406388 5.187564e+09    Europe           Northern Europe
## 7085      6.77   62707547 7.332697e+09    Africa            Eastern Africa
## 7086      3.17     800314 1.574664e+09   Oceania                 Melanesia
## 7087      1.71    5153229 1.112880e+11    Europe           Northern Europe
## 7088      1.77   58867465 1.238488e+12    Europe            Western Europe
## 7089      2.59     228380 3.187447e+09   Oceania                 Polynesia
## 7090      4.74    1173114 5.671730e+09    Africa             Middle Africa
## 7091      5.97    1159001 7.008029e+08    Africa            Western Africa
## 7092      1.69    4859954 2.918522e+09      Asia              Western Asia
## 7093      1.34   82010184 1.796813e+12    Europe            Western Europe
## 7094      4.79   17969006 4.597599e+09    Africa            Western Africa
## 7095      1.28   10859311 1.151488e+11    Europe           Southern Europe
## 7096      2.46      55948 9.836537e+08  Americas          Northern America
## 7097      2.76     101302 4.192911e+08  Americas                 Caribbean
## 7098      4.97   11136814 1.792891e+10  Americas           Central America
## 7099      6.09    8497582 2.918504e+09    Africa            Western Africa
## 7100      6.02    1260424 1.859218e+08    Africa            Western Africa
## 7101      2.54     737316 7.017745e+08  Americas             South America
## 7102      4.55    8258484 3.537036e+09  Americas                 Caribbean
## 7103      4.24    5985675 6.848714e+09  Americas           Central America
## 7104      0.89    6559656 1.527594e+11      Asia              Eastern Asia
## 7105      1.37   10282937 4.312610e+10    Europe            Eastern Europe
## 7106      2.05     275568 8.008866e+09    Europe           Northern Europe
## 7107      3.27 1016402907 4.209209e+11      Asia             Southern Asia
## 7108      2.53  205753493 1.560481e+11      Asia        South-Eastern Asia
## 7109      2.51   63616065 9.450446e+10      Asia             Southern Asia
## 7110      5.14   22200835 2.164978e+10      Asia              Western Asia
## 7111      1.93    3743948           NA    Europe           Northern Europe
## 7112      2.93    5764197 1.106037e+11      Asia              Western Asia
## 7113      1.22   57010940 1.049861e+12    Europe           Southern Europe
## 7114      2.66    2558241 8.837571e+09  Americas                 Caribbean
## 7115      1.35  125266403 4.635991e+12      Asia              Eastern Asia
## 7116      4.27    4621329 7.852971e+09      Asia              Western Asia
## 7117      1.98   15238339 1.622139e+10      Asia              Central Asia
## 7118      5.06   29564614 1.233134e+10    Africa            Eastern Africa
## 7119      4.13      81556 6.275656e+07   Oceania                Micronesia
## 7120      1.48   45599569 4.490613e+11      Asia              Eastern Asia
## 7121      2.88    1766247 3.668297e+10      Asia              Western Asia
## 7122      2.90    4817608 1.253369e+09      Asia              Central Asia
## 7123      4.67    5165072 1.524897e+09      Asia        South-Eastern Asia
## 7124      1.18    2414650 6.997692e+09    Europe           Northern Europe
## 7125      2.39    3113960 1.710897e+10      Asia              Western Asia
## 7126      4.30    1821632 7.032305e+08    Africa           Southern Africa
## 7127      6.01    2558085 3.424692e+08    Africa            Western Africa
## 7128      3.25    5153764           NA    Africa           Northern Africa
## 7129      1.44    3544668 1.119435e+10    Europe           Northern Europe
## 7130      1.72     425830 1.724017e+10    Europe            Western Europe
## 7131      1.06     418810 5.914701e+09      Asia              Eastern Asia
## 7132      1.79    1984242 3.288136e+09    Europe           Southern Europe
## 7133      5.75   14790245 3.536612e+09    Africa            Eastern Africa
## 7134      6.37   10563554 1.665776e+09    Africa            Eastern Africa
## 7135      3.09   22358128 8.117498e+10      Asia        South-Eastern Asia
## 7136      3.76     270292 5.557557e+08      Asia             Southern Asia
## 7137      6.87   10444822 2.199240e+09    Africa            Western Africa
## 7138      1.75     381844 3.539422e+09    Europe           Southern Europe
## 7139      5.51    2551429 1.206212e+09    Africa            Western Africa
## 7140      2.04    1165288 4.096216e+09    Africa            Eastern Africa
## 7141      2.77   99632299 5.250803e+11  Americas           Central America
## 7142      4.47     108236 2.200126e+08   Oceania                Micronesia
## 7143      1.67    4253280 1.306335e+09    Europe            Eastern Europe
## 7144      2.31    2355588 1.090531e+09      Asia              Eastern Asia
## 7145      1.83     616308 1.053736e+09    Europe           Southern Europe
## 7146      2.91   28292299 3.624837e+10    Africa           Northern Africa
## 7147      5.84   17317376 3.887330e+09    Africa            Eastern Africa
## 7148      4.24    1809920 3.653543e+09    Africa           Southern Africa
## 7149      4.34   22866496 4.954859e+09      Asia             Southern Asia
## 7150      1.63   15721627 3.538963e+11    Europe            Western Europe
## 7151      2.54     201883 2.603735e+09   Oceania                 Melanesia
## 7152      1.96    3783516 4.780822e+10   Oceania Australia and New Zealand
## 7153      3.54    4869627 3.532675e+09  Americas           Central America
## 7154      7.76   10432657 1.834510e+09    Africa            Western Africa
## 7155      6.15  116860691 4.315272e+10    Africa            Western Africa
## 7156      1.81    4440109 1.597495e+11    Europe           Northern Europe
## 7157      4.30    2224922 1.887329e+10      Asia              Western Asia
## 7158      4.86  132013680 6.842618e+10      Asia             Southern Asia
## 7159      2.86    2911383 1.088684e+10  Americas           Central America
## 7160      4.60    5101633 3.545657e+09   Oceania                 Melanesia
## 7161      3.84    5089306 7.426066e+09  Americas             South America
## 7162      3.06   25199744 5.129418e+10  Americas             South America
## 7163      3.89   74656228 7.528290e+10      Asia        South-Eastern Asia
## 7164      1.45   38550777 1.571676e+11    Europe            Eastern Europe
## 7165      1.47   10198310 1.084619e+11    Europe           Southern Europe
## 7166      1.97    3769718 5.669098e+10  Americas                 Caribbean
## 7167      3.41     548618           NA      Asia              Western Asia
## 7168      1.29   22458737 3.673131e+10    Europe            Eastern Europe
## 7169      1.23  147385440 2.218972e+11    Europe            Eastern Europe
## 7170      6.09    7047196 1.491826e+09    Africa            Eastern Africa
## 7171      2.53     153066 7.044783e+08  Americas                 Caribbean
## 7172      2.51     107923 3.739560e+08  Americas                 Caribbean
## 7173      4.59     172979 2.243754e+08   Oceania                 Polynesia
## 7174      4.39   20302193 1.810554e+11      Asia              Western Asia
## 7175      5.74    9386923 4.275048e+09    Africa            Western Africa
## 7176      1.72    9669648 6.502783e+09    Europe           Southern Europe
## 7177      2.18      79213 5.789566e+08    Africa            Eastern Africa
## 7178      6.04    3878475 6.667033e+08    Africa            Western Africa
## 7179      1.48    3735531 8.283472e+10      Asia        South-Eastern Asia
## 7180      1.38    5382521 2.832560e+10    Europe            Eastern Europe
## 7181      1.23    1988166 1.819320e+10    Europe           Southern Europe
## 7182      4.87     390489 5.099713e+08   Oceania                 Melanesia
## 7183      2.94   43584030 1.246382e+11    Africa           Southern Africa
## 7184      1.20   40151723 5.274170e+11    Europe           Southern Europe
## 7185      2.24   18572347 1.477118e+10      Asia             Southern Asia
## 7186      5.60   26777059 1.106655e+10    Africa           Northern Africa
## 7187      2.76     469108 9.005404e+08  Americas             South America
## 7188      4.43    1028694 1.455144e+09    Africa           Southern Africa
## 7189      1.52    8861204 2.261812e+11    Europe           Northern Europe
## 7190      1.47    7113505 2.381535e+11    Europe            Western Europe
## 7191      4.18   15568797 1.950304e+10      Asia              Western Asia
## 7192      4.20    6012308 7.662475e+08      Asia              Central Asia
## 7193      5.74   32323953 9.258708e+09    Africa            Eastern Africa
## 7194      1.75   61250974 1.121711e+11      Asia        South-Eastern Asia
## 7195      6.99     845106           NA      Asia        South-Eastern Asia
## 7196      5.44    4624826 1.272874e+09    Africa            Western Africa
## 7197      4.30      96937 1.756557e+08   Oceania                 Polynesia
## 7198      1.80    1262544 7.360039e+09  Americas                 Caribbean
## 7199      2.28    9499387 1.941947e+10    Africa           Northern Africa
## 7200      2.56   61344874 2.583491e+11      Asia              Western Asia
## 7201      3.02    4395293 2.103175e+09      Asia              Central Asia
## 7202      6.94   22336812 5.557028e+09    Africa            Eastern Africa
## 7203      1.20   49655175 2.957901e+10    Europe            Eastern Europe
## 7204      2.90    2733770 9.146794e+10      Asia              Western Asia
## 7205      1.71   58456989 1.364288e+12    Europe           Northern Europe
## 7206      2.00  276354096 9.061073e+12  Americas          Northern America
## 7207      2.30    3292134 2.373262e+10  Americas             South America
## 7208      2.99   23845788 1.271009e+10      Asia              Central Asia
## 7209      4.54     178074 2.559496e+08   Oceania                 Melanesia
## 7210      2.92   23565734 1.201559e+11  Americas             South America
## 7211      5.75    3000312 4.003989e+09      Asia              Western Asia
## 7212      2.17   78462888 2.786124e+10      Asia        South-Eastern Asia
## 7213      6.80   16829935 8.745139e+09      Asia              Western Asia
## 7214      6.13   10034412 3.057832e+09    Africa            Eastern Africa
## 7215      4.17   12226742 6.957978e+09    Africa            Eastern Africa
## 7216      2.47    3114851 3.435834e+09    Europe           Southern Europe
## 7217      2.63   30766551 5.361062e+10    Africa           Northern Africa
## 7218      6.88   14601983 8.862243e+09    Africa             Middle Africa
## 7219      2.32      76041 7.908177e+08  Americas                 Caribbean
## 7220      2.54   36648054 2.864639e+11  Americas             South America
## 7221      1.40    3093820 1.805065e+09      Asia              Western Asia
## 7222      1.91      89004 1.792654e+09  Americas                 Caribbean
## 7223      1.76   18906936 4.010410e+11   Oceania Australia and New Zealand
## 7224      1.34    8032953 1.852756e+11    Europe            Western Europe
## 7225      2.11    8047997 4.745830e+09      Asia              Western Asia
## 7226      2.17     293572 6.075466e+09  Americas                 Caribbean
## 7227      2.81     640904 7.569507e+09      Asia              Western Asia
## 7228      3.23  128746273 4.448076e+10      Asia             Southern Asia
## 7229      1.76     268920 2.501032e+09  Americas                 Caribbean
## 7230      1.25   10005259 1.203862e+10    Europe            Eastern Europe
## 7231      1.62   10237402 2.244364e+11    Europe            Western Europe
## 7232      3.70     239024 7.360948e+08  Americas           Central America
## 7233      6.05    6740491 2.131227e+09    Africa            Western Africa
## 7234      3.81     548387 3.978982e+08      Asia             Southern Asia
## 7235      4.22    8182710 8.192408e+09  Americas             South America
## 7236      1.43    3784389 5.218943e+09    Europe           Southern Europe
## 7237      3.52    1708368 5.319318e+09    Africa           Southern Africa
## 7238      2.40  173153066 6.180739e+11  Americas             South America
## 7239      2.48     323812 5.834893e+09      Asia        South-Eastern Asia
## 7240      1.18    8066219 1.220471e+10    Europe            Eastern Europe
## 7241      6.65   11283016 2.563595e+09    Africa            Western Africa
## 7242      7.11    6623707 8.425544e+08    Africa            Eastern Africa
## 7243      3.90   11928306 3.359511e+09      Asia        South-Eastern Asia
## 7244      5.68   15514249 9.668945e+09    Africa             Middle Africa
## 7245      1.54   30420216 6.888684e+11  Americas          Northern America
## 7246      3.88     429576 5.026964e+08    Africa            Western Africa
## 7247      5.49    3653310 9.378427e+08    Africa             Middle Africa
## 7248      7.38    8042713 1.397343e+09    Africa             Middle Africa
## 7249      2.14   14980484 7.197931e+10  Americas             South America
## 7250      1.45 1262713651 1.105604e+12      Asia              Eastern Asia
## 7251      2.68   39819279 9.611516e+10  Americas             South America
## 7252      5.31     533909 1.990782e+08    Africa            Eastern Africa
## 7253      7.14   46788238 4.624921e+09    Africa             Middle Africa
## 7254      5.14    3031969 2.992466e+09    Africa             Middle Africa
## 7255      2.48    3848725 1.566435e+10  Americas           Central America
## 7256      5.46   16137824 1.081727e+10    Africa            Western Africa
## 7257      1.47    4456298 2.073996e+10    Europe           Southern Europe
## 7258      1.62   11080506 2.885800e+10  Americas                 Caribbean
## 7259      1.78     925491 8.867754e+09      Asia              Western Asia
## 7260      1.14   10280525 5.644467e+10    Europe            Eastern Europe
## 7261      1.74    5319410 1.546263e+11    Europe           Northern Europe
## 7262      4.61     710652 5.489461e+08    Africa            Eastern Africa
## 7263      2.93    8429116 2.271193e+10  Americas                 Caribbean
## 7264      3.11   12398691 1.550700e+10  Americas             South America
## 7265      3.37   67112877 9.475224e+10    Africa           Northern Africa
## 7266      3.07    5775660 1.285734e+10  Americas           Central America
## 7267      5.81     513347 1.105214e+09    Africa             Middle Africa
## 7268      6.02    3429656 7.292848e+08    Africa            Eastern Africa
## 7269      1.31    1403821 5.173492e+09    Europe           Northern Europe
## 7270      6.66   64550161 7.711241e+09    Africa            Eastern Africa
## 7271      3.13     806494 1.713235e+09   Oceania                 Melanesia
## 7272      1.73    5164780 1.156376e+11    Europe           Northern Europe
## 7273      1.80   59107738 1.279259e+12    Europe            Western Europe
## 7274      2.52     232956 3.314945e+09   Oceania                 Polynesia
## 7275      4.66    1202412 5.165096e+09    Africa             Middle Africa
## 7276      5.94    1192920 7.456543e+08    Africa            Western Africa
## 7277      1.64    4801695 3.002262e+09      Asia              Western Asia
## 7278      1.35   81965830 1.830433e+12    Europe            Western Europe
## 7279      4.73   18384426 4.799893e+09    Africa            Western Africa
## 7280      1.27   10910741 1.190862e+11    Europe           Southern Europe
## 7281      2.42      56049 9.972073e+08  Americas          Northern America
## 7282      2.67     101441 4.615242e+08  Americas                 Caribbean
## 7283      4.88   11408815 1.861864e+10  Americas           Central America
## 7284      6.01    8647336 3.054863e+09    Africa            Western Africa
## 7285      5.93    1287727 2.004237e+08    Africa            Western Africa
## 7286      2.56     740189 7.226164e+08  Americas             South America
## 7287      4.43    8404396 3.632985e+09  Americas                 Caribbean
## 7288      4.12    6114534 6.719306e+09  Americas           Central America
## 7289      0.88    6689135 1.566639e+11      Asia              Eastern Asia
## 7290      1.33   10253110 4.450514e+10    Europe            Eastern Europe
## 7291      2.02     278376 8.336762e+09    Europe           Northern Europe
## 7292      3.21 1034976626 4.565438e+11      Asia             Southern Asia
## 7293      2.50  208644079 1.572826e+11      Asia        South-Eastern Asia
## 7294      2.34   64780362 9.633200e+10      Asia             Southern Asia
## 7295      5.05   22888600 2.701892e+10      Asia              Western Asia
## 7296      1.94    3788816           NA    Europe           Northern Europe
## 7297      2.92    5891263 1.143154e+11      Asia              Western Asia
## 7298      1.21   57035249 1.065095e+12    Europe           Southern Europe
## 7299      2.63    2579973 8.930160e+09  Americas                 Caribbean
## 7300      1.34  125481050 4.626750e+12      Asia              Eastern Asia
## 7301      4.16    4691402 8.119266e+09      Asia              Western Asia
## 7302      1.94   15059994 1.665937e+10      Asia              Central Asia
## 7303      5.03   30301240 1.261562e+10    Africa            Eastern Africa
## 7304      4.01      82969 6.363154e+07   Oceania                Micronesia
## 7305      1.41   45908307 4.916607e+11      Asia              Eastern Asia
## 7306      2.90    1853152 3.602671e+10      Asia              Western Asia
## 7307      2.78    4893658 1.299189e+09      Asia              Central Asia
## 7308      4.42    5256207 1.636312e+09      Asia        South-Eastern Asia
## 7309      1.17    2394521 7.326519e+09    Europe           Northern Europe
## 7310      2.31    3156661 1.703145e+10      Asia              Western Asia
## 7311      4.20    1839631 7.058774e+08    Africa           Southern Africa
## 7312      5.95    2741755 4.208947e+08    Africa            Western Africa
## 7313      3.14    5245414 3.268718e+10    Africa           Northern Africa
## 7314      1.38    3515218 1.107421e+10    Europe           Northern Europe
## 7315      1.71     431264 1.869136e+10    Europe            Western Europe
## 7316      1.00     425448 5.772748e+09      Asia              Eastern Asia
## 7317      1.73    1999362 3.430815e+09    Europe           Southern Europe
## 7318      5.65   15262817 3.701387e+09    Africa            Eastern Africa
## 7319      6.32   10882543 1.716454e+09    Africa            Eastern Africa
## 7320      2.96   22898579 8.615719e+10      Asia        South-Eastern Asia
## 7321      3.51     275385 5.959206e+08      Asia             Southern Asia
## 7322      6.85   10736542 2.347354e+09    Africa            Western Africa
## 7323      1.67     384663 3.706482e+09    Europe           Southern Europe
## 7324      5.44    2629806 1.299246e+09    Africa            Western Africa
## 7325      2.02    1175577 4.203159e+09    Africa            Eastern Africa
## 7326      2.71  101266570 5.454180e+11  Americas           Central America
## 7327      4.39     107808 2.235936e+08   Oceania                Micronesia
## 7328      1.61    4224270 1.261920e+09    Europe            Eastern Europe
## 7329      2.22    2376165 1.124014e+09      Asia              Eastern Asia
## 7330      1.82     614623 9.546844e+08    Europe           Southern Europe
## 7331      2.80   28630973 3.644027e+10    Africa           Northern Africa
## 7332      5.81   17774066 4.202895e+09    Africa            Eastern Africa
## 7333      4.13    1857320 3.776751e+09    Africa           Southern Africa
## 7334      4.21   23315053 5.173495e+09      Asia             Southern Asia
## 7335      1.65   15806771 3.704741e+11    Europe            Western Europe
## 7336      2.46     205983 2.627174e+09   Oceania                 Melanesia
## 7337      2.00    3817489 5.028201e+10   Oceania Australia and New Zealand
## 7338      3.38    4949661 3.781225e+09  Americas           Central America
## 7339      7.74   10821434 1.824076e+09    Africa            Western Africa
## 7340      6.13  119826231 4.362756e+10    Africa            Western Africa
## 7341      1.85    4466468 1.629857e+11    Europe           Northern Europe
## 7342      3.99    2225481 1.884974e+10      Asia              Western Asia
## 7343      4.67  135158132 7.093067e+10      Asia             Southern Asia
## 7344      2.84    2970193 1.131330e+10  Americas           Central America
## 7345      4.56    5236863 3.611448e+09   Oceania                 Melanesia
## 7346      3.76    5196935 7.316030e+09  Americas             South America
## 7347      2.99   25561297 5.176307e+10  Americas             South America
## 7348      3.85   76285225 7.760306e+10      Asia        South-Eastern Asia
## 7349      1.39   38515359 1.642782e+11    Europe            Eastern Europe
## 7350      1.47   10237593 1.128797e+11    Europe           Southern Europe
## 7351      1.93    3786884 5.974691e+10  Americas                 Caribbean
## 7352      3.33     570643           NA      Asia              Western Asia
## 7353      1.28   22288573 3.629053e+10    Europe            Eastern Europe
## 7354      1.16  146924174 2.360986e+11    Europe            Eastern Europe
## 7355      6.00    7585143 1.604923e+09    Africa            Eastern Africa
## 7356      2.42     155073 7.210940e+08  Americas                 Caribbean
## 7357      2.44     107879 3.904286e+08  Americas                 Caribbean
## 7358      4.54     173758 2.294946e+08   Oceania                 Polynesia
## 7359      4.19   20825955 1.797002e+11      Asia              Western Asia
## 7360      5.65    9617641 4.546390e+09    Africa            Western Africa
## 7361      1.68    9559819 5.774471e+09    Europe           Southern Europe
## 7362      2.16      80066 5.897946e+08    Africa            Eastern Africa
## 7363      5.99    3948800 6.125552e+08    Africa            Western Africa
## 7364      1.47    3822619 8.796779e+10      Asia        South-Eastern Asia
## 7365      1.32    5384857 2.833629e+10    Europe            Eastern Europe
## 7366      1.22    1988527 1.916210e+10    Europe           Southern Europe
## 7367      4.79     401319 5.075101e+08   Oceania                 Melanesia
## 7368      2.90   44233730 1.275773e+11    Africa           Southern Africa
## 7369      1.21   40392585 5.524479e+11    Europe           Southern Europe
## 7370      2.24   18670843 1.540642e+10      Asia             Southern Asia
## 7371      5.52   27406808 1.141007e+10    Africa           Northern Africa
## 7372      2.76     475637 8.927227e+08  Americas             South America
## 7373      4.31    1048151 1.498084e+09    Africa           Southern Africa
## 7374      1.51    8863595 2.367209e+11    Europe           Northern Europe
## 7375      1.45    7136813 2.412760e+11    Europe            Western Europe
## 7376      4.07   15972430 1.880996e+10      Asia              Western Asia
## 7377      4.08    6094126 7.945986e+08      Asia              Central Asia
## 7378      5.71   33135281 9.706864e+09    Africa            Eastern Africa
## 7379      1.71   61973957 1.171601e+11      Asia        South-Eastern Asia
## 7380      7.08     841063 2.782000e+08      Asia        South-Eastern Asia
## 7381      5.36    4747665 1.304464e+09    Africa            Western Africa
## 7382      4.27      97398 1.824742e+08   Oceania                 Polynesia
## 7383      1.77    1264781 7.683041e+09  Americas                 Caribbean
## 7384      2.18    9603733 2.058804e+10    Africa           Northern Africa
## 7385      2.51   62295617 2.496548e+11      Asia              Western Asia
## 7386      2.91    4449427 2.449271e+09      Asia              Central Asia
## 7387      6.90   23026357 6.004588e+09    Africa            Eastern Africa
## 7388      1.16   49196895 2.951986e+10    Europe            Eastern Europe
## 7389      2.77    2884188 9.412254e+10      Asia              Western Asia
## 7390      1.69   58657794 1.414162e+12    Europe           Northern Europe
## 7391      2.01  279730801 9.502248e+12  Americas          Northern America
## 7392      2.27    3309318 2.327240e+10  Americas             South America
## 7393      2.86   24194543 1.325662e+10      Asia              Central Asia
## 7394      4.46     181346 2.568065e+08   Oceania                 Melanesia
## 7395      2.87   24023355 1.129820e+11  Americas             South America
## 7396      5.57    3119607 4.355167e+09      Asia              Western Asia
## 7397      2.06   79399708 2.919122e+10      Asia        South-Eastern Asia
## 7398      6.57   17304422 9.075314e+09      Asia              Western Asia
## 7399      6.10   10309310 3.125850e+09    Africa            Eastern Africa
## 7400      4.11   12374019 6.901075e+09    Africa            Eastern Africa
## 7401      2.38    3121965 3.686649e+09    Europe           Southern Europe
## 7402      2.51   31183658 5.479006e+10    Africa           Northern Africa
## 7403      6.84   15058638 9.129180e+09    Africa             Middle Africa
## 7404      2.32      77648 8.025267e+08  Americas                 Caribbean
## 7405      2.48   37057453 2.842037e+11  Americas             South America
## 7406      1.30    3076098 1.911564e+09      Asia              Western Asia
## 7407      1.87      90858 1.858659e+09  Americas                 Caribbean
## 7408      1.76   19107251 4.168875e+11   Oceania Australia and New Zealand
## 7409      1.37    8050884 1.920707e+11    Europe            Western Europe
## 7410      2.05    8117742 5.272617e+09      Asia              Western Asia
## 7411      2.07     297891 6.327552e+09  Americas                 Caribbean
## 7412      2.77     666855 7.970691e+09      Asia              Western Asia
## 7413      3.12  131280739 4.712493e+10      Asia             Southern Asia
## 7414      1.77     269838 2.558850e+09  Americas                 Caribbean
## 7415      1.23    9952055 1.273686e+10    Europe            Eastern Europe
## 7416      1.63   10268380 2.326727e+11    Europe            Western Europe
## 7417      3.59     247312 8.320725e+08  Americas           Central America
## 7418      5.98    6949366 2.254839e+09    Africa            Western Africa
## 7419      3.61     564187 4.278088e+08      Asia             Southern Asia
## 7420      4.14    8339512 8.397858e+09  Americas             South America
## 7421      1.38    3792878 5.505984e+09    Europe           Southern Europe
## 7422      3.41    1736579 5.632391e+09    Africa           Southern Africa
## 7423      2.36  175786441 6.447018e+11  Americas             South America
## 7424      2.40     330554 6.001153e+09      Asia        South-Eastern Asia
## 7425      1.18    8000510 1.290355e+10    Europe            Eastern Europe
## 7426      6.59   11607944 2.610946e+09    Africa            Western Africa
## 7427      7.06    6767073 8.353348e+08    Africa            Eastern Africa
## 7428      3.75   12197905 3.654032e+09      Asia        South-Eastern Asia
## 7429      5.62   15927713 1.007504e+10    Africa             Middle Africa
## 7430      1.51   30701903 7.249189e+11  Americas          Northern America
## 7431      3.70     438737 5.392271e+08    Africa            Western Africa
## 7432      5.45    3726048 9.594131e+08    Africa             Middle Africa
## 7433      7.35    8343321 1.385051e+09    Africa             Middle Africa
## 7434      2.09   15170387 7.521051e+10  Americas             South America
## 7435      1.45 1269974572 1.198475e+12      Asia              Eastern Asia
## 7436      2.64   40403959 1.003638e+11  Americas             South America
## 7437      5.32     547696 2.019008e+08    Africa            Eastern Africa
## 7438      7.09   48048664 4.305797e+09    Africa             Middle Africa
## 7439      5.13    3109269 3.219894e+09    Africa             Middle Africa
## 7440      2.41    3925450 1.594644e+10  Americas           Central America
## 7441      5.38   16517948 1.041701e+10    Africa            Western Africa
## 7442      1.44    4428069 2.151778e+10    Europe           Southern Europe
## 7443      1.63   11116787 3.056520e+10  Americas                 Caribbean
## 7444      1.71     943287 9.314938e+09      Asia              Western Asia
## 7445      1.13   10263010 5.880724e+10    Europe            Eastern Europe
## 7446      1.77    5338283 1.600825e+11    Europe           Northern Europe
## 7447      4.47     722562 5.512309e+08    Africa            Eastern Africa
## 7448      2.89    8562623 2.399666e+10  Americas                 Caribbean
## 7449      3.07   12628596 1.594164e+10  Americas             South America
## 7450      3.31   68334905 9.983854e+10    Africa           Northern Africa
## 7451      2.93    5811836 1.313415e+10  Americas           Central America
## 7452      5.77     530896 1.254223e+09    Africa             Middle Africa
## 7453      5.94    3535156 6.336000e+08    Africa            Eastern Africa
## 7454      1.32    1399145 5.675175e+09    Europe           Northern Europe
## 7455      6.53   66443603 8.179534e+09    Africa            Eastern Africa
## 7456      3.09     811223 1.684110e+09   Oceania                 Melanesia
## 7457      1.73    5176482 1.217938e+11    Europe           Northern Europe
## 7458      1.82   59387183 1.326335e+12    Europe            Western Europe
## 7459      2.46     237267 3.447543e+09   Oceania                 Polynesia
## 7460      4.60    1231548 5.067839e+09    Africa             Middle Africa
## 7461      5.92    1228863 7.866653e+08    Africa            Western Africa
## 7462      1.61    4743591 3.057453e+09      Asia              Western Asia
## 7463      1.35   81895925 1.886401e+12    Europe            Western Europe
## 7464      4.67   18824994 4.977489e+09    Africa            Western Africa
## 7465      1.27   10954032 1.244182e+11    Europe           Southern Europe
## 7466      2.33      56174 1.068025e+09  Americas          Northern America
## 7467      2.58     101620 5.197530e+08  Americas                 Caribbean
## 7468      4.80   11688660 1.929057e+10  Americas           Central America
## 7469      5.94    8799165 3.112363e+09    Africa            Western Africa
## 7470      5.85    1315455 2.154555e+08    Africa            Western Africa
## 7471      2.59     742218 7.126679e+08  Americas             South America
## 7472      4.30    8549202 3.664504e+09  Americas                 Caribbean
## 7473      4.00    6243080 7.105541e+09  Americas           Central America
## 7474      0.88    6783502 1.691210e+11      Asia              Eastern Asia
## 7475      1.31   10224113 4.638559e+10    Europe            Eastern Europe
## 7476      2.01     281214 8.697298e+09    Europe           Northern Europe
## 7477      3.15 1053481072 4.746916e+11      Asia             Southern Asia
## 7478      2.48  211540428 1.650210e+11      Asia        South-Eastern Asia
## 7479      2.19   65850062 1.012865e+11      Asia             Southern Asia
## 7480      4.97   23574751 2.585711e+10      Asia              Western Asia
## 7481      1.95    3841574 9.752445e+10    Europe           Northern Europe
## 7482      2.92    6013711 1.248952e+11      Asia              Western Asia
## 7483      1.22   57147081 1.104009e+12    Europe           Southern Europe
## 7484      2.60    2600095 9.008630e+09  Americas                 Caribbean
## 7485      1.32  125714674 4.731199e+12      Asia              Eastern Asia
## 7486      4.05    4767476 8.463893e+09      Asia              Western Asia
## 7487      1.92   14956769 1.829199e+10      Asia              Central Asia
## 7488      5.01   31065820 1.269128e+10    Africa            Eastern Africa
## 7489      3.88      84406 6.823932e+07   Oceania                Micronesia
## 7490      1.35   46206271 5.333840e+11      Asia              Eastern Asia
## 7491      2.87    1929470 3.771801e+10      Asia              Western Asia
## 7492      2.67    4954850 1.369692e+09      Asia              Central Asia
## 7493      4.19    5342879 1.731198e+09      Asia        South-Eastern Asia
## 7494      1.18    2371481 7.833068e+09    Europe           Northern Europe
## 7495      2.23    3235380 1.726036e+10      Asia              Western Asia
## 7496      4.09    1856225 7.458330e+08    Africa           Southern Africa
## 7497      5.88    2891968 5.290646e+08    Africa            Western Africa
## 7498      3.05    5337264 3.389660e+10    Africa           Northern Africa
## 7499      1.34    3486373 1.143420e+10    Europe           Northern Europe
## 7500      1.70     436107 2.026958e+10    Europe            Western Europe
## 7501      0.94     431907 6.101795e+09      Asia              Eastern Asia
## 7502      1.68    2012051 3.586884e+09    Europe           Southern Europe
## 7503      5.55   15744811 3.877575e+09    Africa            Eastern Africa
## 7504      6.25   11193230 1.743507e+09    Africa            Eastern Africa
## 7505      2.83   23420751 9.378974e+10      Asia        South-Eastern Asia
## 7506      3.27     280384 6.243371e+08      Asia             Southern Asia
## 7507      6.84   11046926 2.422470e+09    Africa            Western Africa
## 7508      1.59     387180 3.957418e+09    Europe           Southern Europe
## 7509      5.38    2711421 1.293653e+09    Africa            Western Africa
## 7510      1.99    1185143 4.582562e+09    Africa            Eastern Africa
## 7511      2.66  102808590 5.814264e+11  Americas           Central America
## 7512      4.30     107430 2.336114e+08   Oceania                Micronesia
## 7513      1.57    4201088 1.288420e+09    Europe            Eastern Europe
## 7514      2.14    2397438 1.136896e+09      Asia              Eastern Asia
## 7515      1.82     613557 9.842796e+08    Europe           Southern Europe
## 7516      2.70   28950553 3.702061e+10    Africa           Northern Africa
## 7517      5.78   18264536 4.248748e+09    Africa            Eastern Africa
## 7518      4.03    1897953 3.908501e+09    Africa           Southern Africa
## 7519      4.07   23740145 5.494252e+09      Asia             Southern Asia
## 7520      1.72   15894016 3.850746e+11    Europe            Western Europe
## 7521      2.39     209997 2.682347e+09   Oceania                 Melanesia
## 7522      1.98    3858234 5.159975e+10   Oceania Australia and New Zealand
## 7523      3.25    5026792 3.936328e+09  Americas           Central America
## 7524      7.73   11224523 1.798365e+09    Africa            Western Africa
## 7525      6.10  122876723 4.598345e+10    Africa            Western Africa
## 7526      1.85    4491572 1.682885e+11    Europe           Northern Europe
## 7527      3.72    2239403 1.986788e+10      Asia              Western Asia
## 7528      4.47  138250487 7.395237e+10      Asia             Southern Asia
## 7529      2.82    3028751 1.162050e+10  Americas           Central America
## 7530      4.51    5374051 3.521348e+09   Oceania                 Melanesia
## 7531      3.68    5302703 7.071266e+09  Americas             South America
## 7532      2.93   25914875 5.329039e+10  Americas             South America
## 7533      3.81   77932247 8.102629e+10      Asia        South-Eastern Asia
## 7534      1.34   38486305 1.712761e+11    Europe            Eastern Europe
## 7535      1.47   10278542 1.172995e+11    Europe           Southern Europe
## 7536      1.90    3796981 6.170180e+10  Americas                 Caribbean
## 7537      3.24     593453 1.775989e+10      Asia              Western Asia
## 7538      1.27   22128139 3.705264e+10    Europe            Eastern Europe
## 7539      1.20  146400951 2.597085e+11    Europe            Eastern Europe
## 7540      5.90    8021875 1.734921e+09    Africa            Eastern Africa
## 7541      2.31     156949 7.210592e+08  Americas                 Caribbean
## 7542      2.38     107897 3.974470e+08  Americas                 Caribbean
## 7543      4.50     174614 2.456175e+08   Oceania                 Polynesia
## 7544      3.99   21392273 1.884419e+11      Asia              Western Asia
## 7545      5.56    9860578 4.691828e+09    Africa            Western Africa
## 7546      1.64    9463306 6.082792e+09    Europe           Southern Europe
## 7547      2.15      81154 6.148798e+08    Africa            Eastern Africa
## 7548      5.92    4060709 6.358769e+08    Africa            Western Africa
## 7549      1.60    3918183 9.592265e+10      Asia        South-Eastern Asia
## 7550      1.27    5386065 2.872404e+10    Europe            Eastern Europe
## 7551      1.21    1988652 1.997947e+10    Europe           Southern Europe
## 7552      4.72     412336 4.351012e+08   Oceania                 Melanesia
## 7553      2.87   44896856 1.328776e+11    Africa           Southern Africa
## 7554      1.22   40749800 5.803455e+11    Europe           Southern Europe
## 7555      2.24   18783745 1.633081e+10      Asia             Southern Asia
## 7556      5.44   28079664 1.236614e+10    Africa           Northern Africa
## 7557      2.74     480751 8.921643e+08  Americas             South America
## 7558      4.21    1063715 1.524452e+09    Africa           Southern Africa
## 7559      1.56    8872284 2.472602e+11    Europe           Northern Europe
## 7560      1.44    7165581 2.499187e+11    Europe            Western Europe
## 7561      3.96   16354050 1.932589e+10      Asia              Western Asia
## 7562      3.95    6186152 8.605503e+08      Asia              Central Asia
## 7563      5.69   33991590 1.018579e+10    Africa            Eastern Africa
## 7564      1.68   62693322 1.227252e+11      Asia        South-Eastern Asia
## 7565      7.11     847185 3.162000e+08      Asia        South-Eastern Asia
## 7566      5.29    4874735 1.294244e+09    Africa            Western Africa
## 7567      4.25      97898 1.886233e+08   Oceania                 Polynesia
## 7568      1.75    1267980 8.154316e+09  Americas                 Caribbean
## 7569      2.11    9699192 2.147326e+10    Africa           Northern Africa
## 7570      2.45   63240157 2.665675e+11      Asia              Western Asia
## 7571      2.84    4501419 2.904663e+09      Asia              Central Asia
## 7572      6.87   23757636 6.193247e+09    Africa            Eastern Africa
## 7573      1.14   48746269 3.126153e+10    Europe            Eastern Europe
## 7574      2.64    3050128 1.043374e+11      Asia              Western Asia
## 7575      1.68   58867004 1.477201e+12    Europe           Northern Europe
## 7576      2.05  282895741 9.898800e+12  Americas          Northern America
## 7577      2.24    3321242 2.282326e+10  Americas             South America
## 7578      2.74   24518222 1.376037e+10      Asia              Central Asia
## 7579      4.37     185058 2.720147e+08   Oceania                 Melanesia
## 7580      2.82   24481477 1.171476e+11  Americas             South America
## 7581      5.40    3223781 4.113261e+09      Asia              Western Asia
## 7582      1.98   80285563 3.117252e+10      Asia        South-Eastern Asia
## 7583      6.36   17795219 9.636342e+09      Asia              Western Asia
## 7584      6.07   10585220 3.237716e+09    Africa            Eastern Africa
## 7585      4.07   12499981 6.689958e+09    Africa            Eastern Africa
## 7586      2.29    3124093 3.944715e+09    Europe           Southern Europe
## 7587      2.44   31590320 5.621460e+10    Africa           Northern Africa
## 7588      6.81   15562791 9.416016e+09    Africa             Middle Africa
## 7589      2.31      78972 8.202757e+08  Americas                 Caribbean
## 7590      2.42   37471535 2.716737e+11  Americas             South America
## 7591      1.20    3060036 2.094245e+09      Asia              Western Asia
## 7592      1.85      92894 1.845780e+09  Americas                 Caribbean
## 7593      1.73   19308681 4.255238e+11   Oceania Australia and New Zealand
## 7594      1.33    8078877 1.937176e+11    Europe            Western Europe
## 7595      2.01    8195648 5.794606e+09      Asia              Western Asia
## 7596      1.99     303138 6.493690e+09  Americas                 Caribbean
## 7597      2.72     694893 8.337343e+09      Asia              Western Asia
## 7598      3.01  133776064 4.961030e+10      Asia             Southern Asia
## 7599      1.78     270686 2.429525e+09  Americas                 Caribbean
## 7600      1.22    9891535 1.333871e+10    Europe            Eastern Europe
## 7601      1.65   10311331 2.345520e+11    Europe            Western Europe
## 7602      3.49     254989 8.733197e+08  Americas           Central America
## 7603      5.90    7174911 2.367581e+09    Africa            Western Africa
## 7604      3.42     580784 4.577001e+08      Asia             Southern Asia
## 7605      4.06    8496378 8.539261e+09  Americas             South America
## 7606      1.33    3799747 5.748248e+09    Europe           Southern Europe
## 7607      3.32    1762531 5.832009e+09    Africa           Southern Africa
## 7608      2.32  178419396 6.531498e+11  Americas             South America
## 7609      2.34     337074 6.165827e+09      Asia        South-Eastern Asia
## 7610      1.20    7934389 1.343923e+10    Europe            Eastern Europe
## 7611      6.53   11943740 2.784536e+09    Africa            Western Africa
## 7612      7.00    6946720 8.525077e+08    Africa            Eastern Africa
## 7613      3.62   12448881 3.947766e+09      Asia        South-Eastern Asia
## 7614      5.57   16349364 1.052985e+10    Africa             Middle Africa
## 7615      1.54   30991344 7.378500e+11  Americas          Northern America
## 7616      3.53     447357 5.723227e+08    Africa            Western Africa
## 7617      5.39    3794677 9.619169e+08    Africa             Middle Africa
## 7618      7.32    8663599 1.546522e+09    Africa             Middle Africa
## 7619      2.05   15358418 7.775040e+10  Americas             South America
## 7620      1.46 1277188787 1.297948e+12      Asia              Eastern Asia
## 7621      2.60   40988909 1.020481e+11  Americas             South America
## 7622      5.31     561525 2.086225e+08    Africa            Eastern Africa
## 7623      7.03   49449015 4.215381e+09    Africa             Middle Africa
## 7624      5.13    3183883 3.342250e+09    Africa             Middle Africa
## 7625      2.35    3996800 1.611809e+10  Americas           Central America
## 7626      5.29   16865376 1.041479e+10    Africa            Western Africa
## 7627      1.42    4408458 2.230447e+10    Europe           Southern Europe
## 7628      1.63   11151472 3.153786e+10  Americas                 Caribbean
## 7629      1.66     961482 9.689915e+09      Asia              Western Asia
## 7630      1.14   10244261 6.062871e+10    Europe            Eastern Europe
## 7631      1.75    5354704 1.612108e+11    Europe           Northern Europe
## 7632      4.35     734088 5.625188e+08    Africa            Eastern Africa
## 7633      2.86    8697127 2.443081e+10  Americas                 Caribbean
## 7634      3.03   12852753 1.679240e+10  Americas             South America
## 7635      3.24   69599945 1.033681e+11    Africa           Northern Africa
## 7636      2.80    5844738 1.335864e+10  Americas           Central America
## 7637      5.73     549007 2.030554e+09    Africa             Middle Africa
## 7638      5.86    3655006 7.682107e+08    Africa            Eastern Africa
## 7639      1.34    1391754 6.031669e+09    Europe           Northern Europe
## 7640      6.38   68393128 8.858552e+09    Africa            Eastern Africa
## 7641      3.05     814215 1.717792e+09   Oceania                 Melanesia
## 7642      1.73    5188446 1.245753e+11    Europe           Northern Europe
## 7643      1.84   59711914 1.350683e+12    Europe            Western Europe
## 7644      2.41     241276           NA   Oceania                 Polynesia
## 7645      4.54    1260435 5.175869e+09    Africa             Middle Africa
## 7646      5.89    1267103 8.322918e+08    Africa            Western Africa
## 7647      1.59    4685769 3.204378e+09      Asia              Western Asia
## 7648      1.35   81809438 1.914968e+12    Europe            Western Europe
## 7649      4.62   19293804 5.176588e+09    Africa            Western Africa
## 7650      1.27   10987715 1.296401e+11    Europe           Southern Europe
## 7651      2.51      56334 1.081579e+09  Americas          Northern America
## 7652      2.51     101849 4.994202e+08  Americas                 Caribbean
## 7653      4.72   11976725 1.974053e+10  Americas           Central America
## 7654      5.87    8955756 3.202123e+09    Africa            Western Africa
## 7655      5.77    1343646 2.158864e+08    Africa            Western Africa
## 7656      2.61     743163 7.287029e+08  Americas             South America
## 7657      4.18    8692564 3.626291e+09  Americas                 Caribbean
## 7658      3.88    6371304 7.299041e+09  Americas           Central America
## 7659      0.90    6836538 1.699621e+11      Asia              Eastern Asia
## 7660      1.29   10195978 4.810752e+10    Europe            Eastern Europe
## 7661      2.00     284037 9.038372e+09    Europe           Northern Europe
## 7662      3.08 1071888190 4.981615e+11      Asia             Southern Asia
## 7663      2.48  214448301 1.710335e+11      Asia        South-Eastern Asia
## 7664      2.08   66812736 1.050034e+11      Asia             Southern Asia
## 7665      4.88   24258794 2.415054e+10      Asia              Western Asia
## 7666      1.96    3901688 1.021985e+11    Europe           Northern Europe
## 7667      2.92    6129980 1.246162e+11      Asia              Western Asia
## 7668      1.23   57359179 1.124573e+12    Europe           Southern Europe
## 7669      2.58    2618325 9.129789e+09  Americas                 Caribbean
## 7670      1.31  125974298 4.748016e+12      Asia              Eastern Asia
## 7671      3.97    4850227 8.909881e+09      Asia              Western Asia
## 7672      1.94   14942788 2.076141e+10      Asia              Central Asia
## 7673      5.00   31863280 1.317100e+10    Africa            Eastern Africa
## 7674      3.75      85858 6.614185e+07   Oceania                Micronesia
## 7675      1.30   46492324 5.545779e+11      Asia              Eastern Asia
## 7676      2.80    1990022 3.799299e+10      Asia              Western Asia
## 7677      2.59    4998286 1.442581e+09      Asia              Central Asia
## 7678      3.99    5424701 1.830766e+09      Asia        South-Eastern Asia
## 7679      1.21    2345145 8.463121e+09    Europe           Northern Europe
## 7680      2.14    3359875 1.794276e+10      Asia              Western Asia
## 7681      3.98    1871489 7.768980e+08    Africa           Southern Africa
## 7682      5.80    2998770 6.459660e+08    Africa            Western Africa
## 7683      2.98    5428303 3.243905e+10    Africa           Northern Africa
## 7684      1.31    3458923 1.220438e+10    Europe           Northern Europe
## 7685      1.68     440198 2.077979e+10    Europe            Western Europe
## 7686      0.89     438088 6.278747e+09      Asia              Eastern Asia
## 7687      1.64    2021585 3.424565e+09    Europe           Southern Europe
## 7688      5.44   16235767 4.110921e+09    Africa            Eastern Africa
## 7689      6.19   11491824 1.656768e+09    Africa            Eastern Africa
## 7690      2.68   23920963 9.427526e+10      Asia        South-Eastern Asia
## 7691      3.06     285298 6.459054e+08      Asia             Southern Asia
## 7692      6.82   11376094 2.715588e+09    Africa            Western Africa
## 7693      1.52     389323 3.896083e+09    Europe           Southern Europe
## 7694      5.32    2796502 1.319640e+09    Africa            Western Africa
## 7695      1.97    1193950 4.700498e+09    Africa            Eastern Africa
## 7696      2.61  104239563 5.805137e+11  Americas           Central America
## 7697      4.20     107170 2.374727e+08   Oceania                Micronesia
## 7698      1.54    4185513 1.367014e+09    Europe            Eastern Europe
## 7699      2.10    2419729 1.170465e+09      Asia              Eastern Asia
## 7700      1.80     613239 9.951067e+08    Europe           Southern Europe
## 7701      2.61   29250983 3.981639e+10    Africa           Northern Africa
## 7702      5.76   18792357 4.754303e+09    Africa            Eastern Africa
## 7703      3.94    1931005 3.954636e+09    Africa           Southern Africa
## 7704      3.92   24140941 5.757963e+09      Asia             Southern Asia
## 7705      1.71   15984365 3.924906e+11    Europe            Western Europe
## 7706      2.34     213904           NA   Oceania                 Melanesia
## 7707      1.96    3906911 5.345126e+10   Oceania Australia and New Zealand
## 7708      3.14    5100750 4.052872e+09  Americas           Central America
## 7709      7.70   11642308 1.926127e+09    Africa            Western Africa
## 7710      6.08  126014935 4.740894e+10    Africa            Western Africa
## 7711      1.78    4514907 1.716376e+11    Europe           Northern Europe
## 7712      3.49    2272547 2.135432e+10      Asia              Western Asia
## 7713      4.29  141282077 7.541847e+10      Asia             Southern Asia
## 7714      2.80    3086887 1.168723e+10  Americas           Central America
## 7715      4.45    5512835 3.517077e+09   Oceania                 Melanesia
## 7716      3.60    5406625 7.217237e+09  Americas             South America
## 7717      2.87   26261363 5.340491e+10  Americas             South America
## 7718      3.77   79604541 8.337119e+10      Asia        South-Eastern Asia
## 7719      1.30   38466543 1.733405e+11    Europe            Eastern Europe
## 7720      1.46   10320463 1.196161e+11    Europe           Southern Europe
## 7721      1.86    3799366 6.559699e+10  Americas                 Caribbean
## 7722      3.13     613720 1.835089e+10      Asia              Western Asia
## 7723      1.27   21983221 3.916464e+10    Europe            Eastern Europe
## 7724      1.22  145818121 2.729328e+11    Europe            Eastern Europe
## 7725      5.79    8329113 1.882390e+09    Africa            Eastern Africa
## 7726      2.22     158650 6.841413e+08  Americas                 Caribbean
## 7727      2.32     107989 4.062896e+08  Americas                 Caribbean
## 7728      4.48     175567 2.630356e+08   Oceania                 Polynesia
## 7729      3.80   22007937 1.894735e+11      Asia              Western Asia
## 7730      5.48   10118078 4.906757e+09    Africa            Western Africa
## 7731      1.60    9384816 6.405179e+09    Europe           Southern Europe
## 7732      2.16      82519 6.009148e+08    Africa            Eastern Africa
## 7733      5.85    4220198 7.514153e+08    Africa            Western Africa
## 7734      1.41    4023237 9.481532e+10      Asia        South-Eastern Asia
## 7735      1.24    5386224 2.972421e+10    Europe            Eastern Europe
## 7736      1.22    1988287 2.056679e+10    Europe           Southern Europe
## 7737      4.67     423535 4.003864e+08   Oceania                 Melanesia
## 7738      2.83   45579161 1.365124e+11    Africa           Southern Africa
## 7739      1.25   41230518 6.016409e+11    Europe           Southern Europe
## 7740      2.24   18914866 1.607844e+10      Asia             Southern Asia
## 7741      5.37   28805142 1.312857e+10    Africa           Northern Africa
## 7742      2.70     484210 9.327563e+08  Americas             South America
## 7743      4.12    1074765 1.542104e+09    Africa           Southern Africa
## 7744      1.58    8888675 2.503813e+11    Europe           Northern Europe
## 7745      1.43    7200945 2.527980e+11    Europe            Western Europe
## 7746      3.84   16694414 2.033102e+10      Asia              Western Asia
## 7747      3.85    6290413 9.483264e+08      Asia              Central Asia
## 7748      5.68   34899062 1.079671e+10    Africa            Eastern Africa
## 7749      1.64   63415174 1.253850e+11      Asia        South-Eastern Asia
## 7750      7.09     865848 2.769000e+08      Asia        South-Eastern Asia
## 7751      5.22    5006223 1.273189e+09    Africa            Western Africa
## 7752      4.24      98434 1.954170e+08   Oceania                 Polynesia
## 7753      1.74    1272383 8.488206e+09  Americas                 Caribbean
## 7754      2.07    9785665 2.251470e+10    Africa           Northern Africa
## 7755      2.40   64182694 2.513799e+11      Asia              Western Asia
## 7756      2.78    4551762 3.497985e+09      Asia              Central Asia
## 7757      6.82   24534668 6.514284e+09    Africa            Eastern Africa
## 7758      1.14   48310816 3.413759e+10    Europe            Eastern Europe
## 7759      2.53    3217865 1.057971e+11      Asia              Western Asia
## 7760      1.67   59080221 1.523742e+12    Europe           Northern Europe
## 7761      2.03  285796198 1.000703e+13  Americas          Northern America
## 7762      2.22    3327105 2.194590e+10  Americas             South America
## 7763      2.65   24814629 1.433831e+10      Asia              Central Asia
## 7764      4.27     189288 2.625254e+08   Oceania                 Melanesia
## 7765      2.78   24940223 1.211239e+11  Americas             South America
## 7766      5.25    3309978 3.504929e+09      Asia              Western Asia
## 7767      1.94   81123685 3.332183e+10      Asia        South-Eastern Asia
## 7768      6.17   18306287 1.000287e+10      Asia              Western Asia
## 7769      6.04   10861238 3.396364e+09    Africa            Eastern Africa
## 7770      4.04   12603988 6.786267e+09    Africa            Eastern Africa
## 7771      2.20    3123112 4.059112e+09    Europe           Southern Europe
## 7772      2.41   31990387 5.885669e+10    Africa           Northern Africa
## 7773      6.78   16109696 1.078045e+10    Africa             Middle Africa
## 7774      2.29      80030 8.409727e+08  Americas                 Caribbean
## 7775      2.38   37889443 2.420762e+11  Americas             South America
## 7776      1.20    3047249 2.370398e+09      Asia              Western Asia
## 7777      1.83      94995 1.798192e+09  Americas                 Caribbean
## 7778      1.76   19514385 4.421354e+11   Oceania Australia and New Zealand
## 7779      1.39    8114698 1.969986e+11    Europe            Western Europe
## 7780      2.00    8280599 6.408835e+09      Asia              Western Asia
## 7781      1.92     309170 6.669320e+09  Americas                 Caribbean
## 7782      2.67     725365 8.775887e+09      Asia              Western Asia
## 7783      2.91  136228456 5.180080e+10      Asia             Southern Asia
## 7784      1.79     271479 2.343387e+09  Americas                 Caribbean
## 7785      1.23    9825802 1.401169e+10    Europe            Eastern Europe
## 7786      1.68   10364613 2.377417e+11    Europe            Western Europe
## 7787      3.40     262202 9.178481e+08  Americas           Central America
## 7788      5.82    7414744 2.474122e+09    Africa            Western Africa
## 7789      3.24     598421 4.985096e+08      Asia             Southern Asia
## 7790      3.98    8653343 8.751510e+09  Americas             South America
## 7791      1.28    3808347 6.052905e+09    Europe           Southern Europe
## 7792      3.23    1786672 6.357436e+09    Africa           Southern Africa
## 7793      2.26  181045592 6.705127e+11  Americas             South America
## 7794      2.29     343383 6.404574e+09      Asia        South-Eastern Asia
## 7795      1.22    7869124 1.406418e+10    Europe            Eastern Europe
## 7796      6.47   12290984 2.915395e+09    Africa            Western Africa
## 7797      6.94    7159918 8.904146e+08    Africa            Eastern Africa
## 7798      3.50   12681984 4.211788e+09      Asia        South-Eastern Asia
## 7799      5.52   16779434 1.095200e+10    Africa             Middle Africa
## 7800      1.51   31288572 7.594286e+11  Americas          Northern America
## 7801      3.36     455396 6.025556e+08    Africa            Western Africa
## 7802      5.33    3859784 9.563129e+08    Africa             Middle Africa
## 7803      7.27    9002102 1.677841e+09    Africa             Middle Africa
## 7804      2.01   15544554 7.944855e+10  Americas             South America
## 7805      1.47 1284349938 1.416062e+12      Asia              Eastern Asia
## 7806      2.57   41572493 1.046030e+11  Americas             South America
## 7807      5.30     575428 2.172791e+08    Africa            Eastern Africa
## 7808      6.96   50971407 4.361586e+09    Africa             Middle Africa
## 7809      5.13    3256867 3.495993e+09    Africa             Middle Africa
## 7810      2.28    4063208 1.658587e+10  Americas           Central America
## 7811      5.21   17185421 1.026578e+10    Africa            Western Africa
## 7812      1.39    4396765 2.339255e+10    Europe           Southern Europe
## 7813      1.62   11184540 3.198840e+10  Americas                 Caribbean
## 7814      1.61     979883 9.892554e+09      Asia              Western Asia
## 7815      1.17   10225198 6.193180e+10    Europe            Eastern Europe
## 7816      1.72    5369058 1.619618e+11    Europe           Northern Europe
## 7817      4.25     745459 5.772487e+08    Africa            Eastern Africa
## 7818      2.84    8832286 2.584492e+10  Americas                 Caribbean
## 7819      2.98   13072056 1.765075e+10  Americas             South America
## 7820      3.18   70908710 1.058184e+11    Africa           Northern Africa
## 7821      2.68    5874301 1.367126e+10  Americas           Central America
## 7822      5.68     567664 2.425758e+09    Africa             Middle Africa
## 7823      5.77    3788532 7.912988e+08    Africa            Eastern Africa
## 7824      1.38    1382735 6.427372e+09    Europe           Northern Europe
## 7825      6.22   70391170 8.992734e+09    Africa            Eastern Africa
## 7826      3.00     815691 1.772761e+09   Oceania                 Melanesia
## 7827      1.72    5200632 1.268601e+11    Europe           Northern Europe
## 7828      1.87   60075783 1.363229e+12    Europe            Western Europe
## 7829      2.37     245032           NA   Oceania                 Polynesia
## 7830      4.49    1289192 5.162042e+09    Africa             Middle Africa
## 7831      5.87    1307674 8.052424e+08    Africa            Western Africa
## 7832      1.59    4629853 3.379780e+09      Asia              Western Asia
## 7833      1.35   81699829 1.915163e+12    Europe            Western Europe
## 7834      4.57   19788181 5.409535e+09    Africa            Western Africa
## 7835      1.28   11011490 1.340986e+11    Europe           Southern Europe
## 7836      2.57      56525 1.071075e+09  Americas          Northern America
## 7837      2.46     102100 5.101165e+08  Americas                 Caribbean
## 7838      4.63   12272208 2.050382e+10  Americas           Central America
## 7839      5.79    9114287 3.322810e+09    Africa            Western Africa
## 7840      5.69    1372367 2.005585e+08    Africa            Western Africa
## 7841      2.65     743107 7.363616e+08  Americas             South America
## 7842      4.07    8834739 3.617087e+09  Americas                 Caribbean
## 7843      3.78    6499001 7.573072e+09  Americas           Central America
## 7844      0.92    6854755 1.730910e+11      Asia              Eastern Asia
## 7845      1.29   10168101 5.027529e+10    Europe            Eastern Europe
## 7846      2.00     286865 9.050931e+09    Europe           Northern Europe
## 7847      3.02 1090189358 5.176273e+11      Asia             Southern Asia
## 7848      2.47  217369087 1.787291e+11      Asia        South-Eastern Asia
## 7849      1.99   67696677 1.128950e+11      Asia             Southern Asia
## 7850      4.80   24943793 2.226680e+10      Asia              Western Asia
## 7851      1.97    3968213 1.082007e+11    Europe           Northern Europe
## 7852      2.91    6240215 1.238990e+11      Asia              Western Asia
## 7853      1.25   57655677 1.129650e+12    Europe           Southern Europe
## 7854      2.55    2634779 9.218386e+09  Americas                 Caribbean
## 7855      1.30  126249509 4.761764e+12      Asia              Eastern Asia
## 7856      3.89    4938935 9.425388e+09      Asia              Western Asia
## 7857      2.00   15010919 2.279603e+10      Asia              Central Asia
## 7858      4.99   32691980 1.324302e+10    Africa            Eastern Africa
## 7859      3.63      87343 7.023669e+07   Oceania                Micronesia
## 7860      1.25   46769579 5.942303e+11      Asia              Eastern Asia
## 7861      2.72    2042215 3.913278e+10      Asia              Western Asia
## 7862      2.54    5027919 1.442331e+09      Asia              Central Asia
## 7863      3.83    5502340 1.939125e+09      Asia        South-Eastern Asia
## 7864      1.25    2316731 9.010899e+09    Europe           Northern Europe
## 7865      2.04    3522842 1.854812e+10      Asia              Western Asia
## 7866      3.86    1885488 7.852076e+08    Africa           Southern Africa
## 7867      5.72    3070673 8.519812e+08    Africa            Western Africa
## 7868      2.93    5518341 3.201734e+10    Africa           Northern Africa
## 7869      1.29    3432663 1.304202e+10    Europe           Northern Europe
## 7870      1.67     443729 2.163277e+10    Europe            Western Europe
## 7871      0.86     444178 6.837767e+09      Asia              Eastern Asia
## 7872      1.60    2028706 3.453794e+09    Europe           Southern Europe
## 7873      5.34   16736029 3.589911e+09    Africa            Eastern Africa
## 7874      6.12   11788731 1.684933e+09    Africa            Eastern Africa
## 7875      2.54   24401977 9.935763e+10      Asia        South-Eastern Asia
## 7876      2.87     290147 6.849243e+08      Asia             Southern Asia
## 7877      6.81   11723017 2.828376e+09    Africa            Western Africa
## 7878      1.46     391148 4.005624e+09    Europe           Southern Europe
## 7879      5.26    2884672 1.328413e+09    Africa            Western Africa
## 7880      1.93    1201931 4.799834e+09    Africa            Eastern Africa
## 7881      2.57  105578297 5.853127e+11  Americas           Central America
## 7882      4.11     106983 2.386671e+08   Oceania                Micronesia
## 7883      1.51    4176647 1.473641e+09    Europe            Eastern Europe
## 7884      2.09    2443503 1.225863e+09      Asia              Eastern Asia
## 7885      1.79     613543 1.014014e+09    Europe           Southern Europe
## 7886      2.54   29535591 4.113671e+10    Africa           Northern Africa
## 7887      5.74   19348715 5.173488e+09    Africa            Eastern Africa
## 7888      3.85    1957749 4.143948e+09    Africa           Southern Africa
## 7889      3.78   24516969 5.764888e+09      Asia             Southern Asia
## 7890      1.73   16076427 3.927901e+11    Europe            Western Europe
## 7891      2.29     217701           NA   Oceania                 Melanesia
## 7892      1.95    3961695 5.607724e+10   Oceania Australia and New Zealand
## 7893      3.05    5171736 4.083427e+09  Americas           Central America
## 7894      7.68   12075991 1.983894e+09    Africa            Western Africa
## 7895      6.06  129246283 4.814326e+10    Africa            Western Africa
## 7896      1.75    4537240 1.742158e+11    Europe           Northern Europe
## 7897      3.30    2323203 2.190276e+10      Asia              Western Asia
## 7898      4.13  144271586 7.785028e+10      Asia             Southern Asia
## 7899      2.78    3144728 1.194773e+10  Americas           Central America
## 7900      4.39    5653284 3.511489e+09   Oceania                 Melanesia
## 7901      3.51    5508615 7.213731e+09  Americas             South America
## 7902      2.82   26601463 5.608593e+10  Americas             South America
## 7903      3.71   81294378 8.641082e+10      Asia        South-Eastern Asia
## 7904      1.28   38454823 1.758427e+11    Europe            Eastern Europe
## 7905      1.45   10362028 1.205303e+11    Europe           Southern Europe
## 7906      1.83    3794756 6.619851e+10  Americas                 Caribbean
## 7907      3.00     634388 1.965994e+10      Asia              Western Asia
## 7908      1.27   21851988 4.116203e+10    Europe            Eastern Europe
## 7909      1.29  145195521 2.858798e+11    Europe            Eastern Europe
## 7910      5.67    8539029 2.089452e+09    Africa            Eastern Africa
## 7911      2.15     160218 7.053882e+08  Americas                 Caribbean
## 7912      2.27     108150 4.218971e+08  Americas                 Caribbean
## 7913      4.46     176592 2.746308e+08   Oceania                 Polynesia
## 7914      3.63   22668102 1.897161e+11      Asia              Western Asia
## 7915      5.41   10389457 4.938887e+09    Africa            Western Africa
## 7916      1.57    9320350 6.669246e+09    Europe           Southern Europe
## 7917      2.18      84096 6.082029e+08    Africa            Eastern Africa
## 7918      5.76    4422154 9.577668e+08    Africa            Western Africa
## 7919      1.37    4136102 9.879942e+10      Asia        South-Eastern Asia
## 7920      1.23    5385480 3.108644e+10    Europe            Eastern Europe
## 7921      1.23    1987855 2.135385e+10    Europe           Southern Europe
## 7922      4.62     434893 3.891756e+08   Oceania                 Melanesia
## 7923      2.80   46272223 1.415195e+11    Africa           Southern Africa
## 7924      1.27   41815486 6.179464e+11    Europe           Southern Europe
## 7925      2.25   19061066 1.671589e+10      Asia             Southern Asia
## 7926      5.29   29569978 1.383233e+10    Africa           Northern Africa
## 7927      2.66     486271 9.777941e+08  Americas             South America
## 7928      4.05    1082195 1.569510e+09    Africa           Southern Africa
## 7929      1.67    8911899 2.565994e+11    Europe           Northern Europe
## 7930      1.42    7242034 2.539182e+11    Europe            Western Europe
## 7931      3.72   16997521 2.153055e+10      Asia              Western Asia
## 7932      3.76    6406518 1.034624e+09      Asia              Central Asia
## 7933      5.67   35855480 1.157014e+10    Africa            Eastern Africa
## 7934      1.62   64136669 1.320525e+11      Asia        South-Eastern Asia
## 7935      7.04     894837 2.836000e+08      Asia        South-Eastern Asia
## 7936      5.17    5142419 1.261448e+09    Africa            Western Africa
## 7937      4.22      99005 2.027182e+08   Oceania                 Polynesia
## 7938      1.74    1277840 9.168418e+09  Americas                 Caribbean
## 7939      2.04    9864207 2.289753e+10    Africa           Northern Africa
## 7940      2.36   65125766 2.668746e+11      Asia              Western Asia
## 7941      2.74    4600172 4.050666e+09      Asia              Central Asia
## 7942      6.77   25355794 7.083155e+09    Africa            Eastern Africa
## 7943      1.15   47890647 3.591274e+10    Europe            Eastern Europe
## 7944      2.43    3394060 1.083717e+11      Asia              Western Asia
## 7945      1.67   59301235 1.564236e+12    Europe           Northern Europe
## 7946      2.02  288470847 1.018996e+13  Americas          Northern America
## 7947      2.21    3327770 2.024904e+10  Americas             South America
## 7948      2.59   25088682 1.491184e+10      Asia              Central Asia
## 7949      4.16     193957 2.509797e+08   Oceania                 Melanesia
## 7950      2.74   25399143 1.103976e+11  Americas             South America
## 7951      5.10    3380907 3.151496e+09      Asia              Western Asia
## 7952      1.92   81917488 3.568108e+10      Asia        South-Eastern Asia
## 7953      5.98   18832097 1.039651e+10      Asia              Western Asia
## 7954      6.02   11139978 3.508444e+09    Africa            Eastern Africa
## 7955      4.02   12691431 6.182695e+09    Africa            Eastern Africa
## 7956      2.10    3117045 4.290481e+09    Europe           Southern Europe
## 7957      2.41   32394886 6.291780e+10    Africa           Northern Africa
## 7958      6.74   16691395 1.113710e+10    Africa             Middle Africa
## 7959      2.27      80904 8.836182e+08  Americas                 Caribbean
## 7960      2.34   38309475 2.634686e+11  Americas             South America
## 7961      1.40    3036420 2.703221e+09      Asia              Western Asia
## 7962      1.81      97015 1.826397e+09  Americas                 Caribbean
## 7963      1.75   19735255 4.566032e+11   Oceania Australia and New Zealand
## 7964      1.38    8155466 1.987045e+11    Europe            Western Europe
## 7965      1.99    8371536 7.126624e+09      Asia              Western Asia
## 7966      1.88     315757 6.584970e+09  Americas                 Caribbean
## 7967      2.60     761595 9.407751e+09      Asia              Western Asia
## 7968      2.80  138600174 5.452345e+10      Asia             Southern Asia
## 7969      1.80     272261 2.390442e+09  Americas                 Caribbean
## 7970      1.25    9758817 1.499856e+10    Europe            Eastern Europe
## 7971      1.70   10426169 2.396593e+11    Europe            Western Europe
## 7972      3.30     269132 1.003404e+09  Americas           Central America
## 7973      5.73    7665681 2.570612e+09    Africa            Western Africa
## 7974      3.07     616474 5.412749e+08      Asia             Southern Asia
## 7975      3.90    8810420 8.988793e+09  Americas             South America
## 7976      1.24    3817313 6.295021e+09    Europe           Southern Europe
## 7977      3.15    1810438 6.756370e+09    Africa           Southern Africa
## 7978      2.20  183627339 6.782178e+11  Americas             South America
## 7979      2.25     349557 6.590560e+09      Asia        South-Eastern Asia
## 7980      1.25    7805041 1.483846e+10    Europe            Eastern Europe
## 7981      6.40   12651596 3.149922e+09    Africa            Western Africa
## 7982      6.87    7401215 8.795183e+08    Africa            Eastern Africa
## 7983      3.40   12901217 4.570038e+09      Asia        South-Eastern Asia
## 7984      5.46   17218591 1.139348e+10    Africa             Middle Africa
## 7985      1.54   31596593 7.737140e+11  Americas          Northern America
## 7986      3.19     462675 6.307747e+08    Africa            Western Africa
## 7987      5.26    3923294 8.836331e+08    Africa             Middle Africa
## 7988      7.21    9353516 1.924847e+09    Africa             Middle Africa
## 7989      1.99   15729268 8.256049e+10  Americas             South America
## 7990      1.49 1291485488 1.557668e+12      Asia              Eastern Asia
## 7991      2.54   42152147 1.087020e+11  Americas             South America
## 7992      5.28     589500 2.226560e+08    Africa            Eastern Africa
## 7993      6.89   52602208 4.614184e+09    Africa             Middle Africa
## 7994      5.13    3331564 3.523961e+09    Africa             Middle Africa
## 7995      2.20    4125970 1.764811e+10  Americas           Central America
## 7996      5.13   17491539 1.010611e+10    Africa            Western Africa
## 7997      1.38    4390291 2.464898e+10    Europe           Southern Europe
## 7998      1.61   11214837 3.320120e+10  Americas                 Caribbean
## 7999      1.58     998150 1.008388e+10      Asia              Western Asia
## 8000      1.20   10211846 6.426426e+10    Europe            Eastern Europe
## 8001      1.76    5382953 1.625835e+11    Europe           Northern Europe
## 8002      4.16     756656 5.957204e+08    Africa            Eastern Africa
## 8003      2.81    8967759 2.577944e+10  Americas                 Caribbean
## 8004      2.94   13289600 1.822856e+10  Americas             South America
## 8005      3.13   72247626 1.091977e+11    Africa           Northern Africa
## 8006      2.58    5900929 1.398570e+10  Americas           Central America
## 8007      5.63     586772 2.764278e+09    Africa             Middle Africa
## 8008      5.68    3928408 7.702857e+08    Africa            Eastern Africa
## 8009      1.42    1372890 6.926483e+09    Europe           Northern Europe
## 8010      6.05   72432290 8.798394e+09    Africa            Eastern Africa
## 8011      2.95     816626 1.790489e+09   Oceania                 Melanesia
## 8012      1.76    5213800 1.294131e+11    Europe           Northern Europe
## 8013      1.89   60464857 1.375491e+12    Europe            Western Europe
## 8014      2.33     248536           NA   Oceania                 Polynesia
## 8015      4.45    1318093 5.289812e+09    Africa             Middle Africa
## 8016      5.85    1350345 8.605625e+08    Africa            Western Africa
## 8017      1.61    4575993 3.753520e+09      Asia              Western Asia
## 8018      1.35   81569481 1.907972e+12    Europe            Western Europe
## 8019      4.51   20305396 5.690831e+09    Africa            Western Africa
## 8020      1.30   11029587 1.420685e+11    Europe           Southern Europe
## 8021      2.37      56717 1.067008e+09  Americas          Northern America
## 8022      2.41     102371 5.531913e+08  Americas                 Caribbean
## 8023      4.55   12573346 2.102274e+10  Americas           Central America
## 8024      5.72    9281572 3.502842e+09    Africa            Western Africa
## 8025      5.61    1401716 1.992964e+08    Africa            Western Africa
## 8026      2.68     742537 7.289593e+08  Americas             South America
## 8027      3.95    8976555 3.630196e+09  Americas                 Caribbean
## 8028      3.67    6626304 7.917422e+09  Americas           Central America
## 8029      0.95    6850361 1.782942e+11      Asia              Eastern Asia
## 8030      1.29   10141471 5.221111e+10    Europe            Eastern Europe
## 8031      2.02     289824 9.271268e+09    Europe           Northern Europe
## 8032      2.95 1108369577 5.587476e+11      Asia             Southern Asia
## 8033      2.48  220307809 1.872730e+11      Asia        South-Eastern Asia
## 8034      1.93   68522074 1.209272e+11      Asia             Southern Asia
## 8035      4.71   25630426 1.307061e+10      Asia              Western Asia
## 8036      1.97    4040986 1.127012e+11    Europe           Northern Europe
## 8037      2.91    6350762 1.257726e+11      Asia              Western Asia
## 8038      1.27   58002003 1.129124e+12    Europe           Southern Europe
## 8039      2.53    2649825 9.682307e+09  Americas                 Caribbean
## 8040      1.30  126523884 4.842005e+12      Asia              Eastern Asia
## 8041      3.83    5042538 9.819188e+09      Asia              Western Asia
## 8042      2.08   15139324 2.491606e+10      Asia              Central Asia
## 8043      4.98   33551079 1.363137e+10    Africa            Eastern Africa
## 8044      3.52      88892 7.339850e+07   Oceania                Micronesia
## 8045      1.22   47043251 6.108853e+11      Asia              Eastern Asia
## 8046      2.66    2095993 4.591057e+10      Asia              Western Asia
## 8047      2.53    5050867 1.543731e+09      Asia              Central Asia
## 8048      3.71    5579003 2.056771e+09      Asia        South-Eastern Asia
## 8049      1.29    2286946 9.659317e+09    Europe           Northern Europe
## 8050      1.95    3701464 1.914860e+10      Asia              Western Asia
## 8051      3.75    1898778 8.193326e+08    Africa           Southern Africa
## 8052      5.64    3124222 5.722578e+08    Africa            Western Africa
## 8053      2.88    5609166 3.617959e+10    Africa           Northern Africa
## 8054      1.29    3406030 1.437840e+10    Europe           Northern Europe
## 8055      1.65     447321 2.196765e+10    Europe            Western Europe
## 8056      0.84     450754 7.698199e+09      Asia              Eastern Asia
## 8057      1.57    2033974 3.551069e+09    Europe           Southern Europe
## 8058      5.23   17245275 3.941180e+09    Africa            Eastern Africa
## 8059      6.06   12090476 1.777604e+09    Africa            Eastern Africa
## 8060      2.42   24869423 1.051089e+11      Asia        South-Eastern Asia
## 8061      2.72     294996 7.954451e+08      Asia             Southern Asia
## 8062      6.80   12088867 3.038846e+09    Africa            Western Africa
## 8063      1.42     392870 4.010915e+09    Europe           Southern Europe
## 8064      5.21    2974686 1.407835e+09    Africa            Western Africa
## 8065      1.88    1209182 4.975357e+09    Africa            Eastern Africa
## 8066      2.52  106888418 5.932234e+11  Americas           Central America
## 8067      4.01     106816 2.428533e+08   Oceania                Micronesia
## 8068      1.50    4171686 1.570901e+09    Europe            Eastern Europe
## 8069      2.10    2469045 1.311731e+09      Asia              Eastern Asia
## 8070      1.78     614322 1.039364e+09    Europe           Southern Europe
## 8071      2.47   29812685 4.373531e+10    Africa           Northern Africa
## 8072      5.72   19928496 5.485125e+09    Africa            Eastern Africa
## 8073      3.76    1980531 4.319624e+09    Africa           Southern Africa
## 8074      3.63   24868900 5.992315e+09      Asia             Southern Asia
## 8075      1.75   16167421 3.941084e+11    Europe            Western Europe
## 8076      2.26     221408           NA   Oceania                 Melanesia
## 8077      1.98    4020195 5.851389e+10   Oceania Australia and New Zealand
## 8078      2.97    5240876 4.186355e+09  Americas           Central America
## 8079      7.66   12526725 2.089040e+09    Africa            Western Africa
## 8080      6.04  132581484 5.310202e+10    Africa            Western Africa
## 8081      1.80    4560947 1.759291e+11    Europe           Northern Europe
## 8082      3.14    2385075 2.196847e+10      Asia              Western Asia
## 8083      3.99  147251530 8.162316e+10      Asia             Southern Asia
## 8084      2.75    3202511 1.245022e+10  Americas           Central America
## 8085      4.34    5795571 3.587481e+09   Oceania                 Melanesia
## 8086      3.43    5607948 7.490710e+09  Americas             South America
## 8087      2.77   26937737 5.834747e+10  Americas             South America
## 8088      3.64   82971734 9.070575e+10      Asia        South-Eastern Asia
## 8089      1.27   38451227 1.826428e+11    Europe            Eastern Europe
## 8090      1.44   10402836 1.194321e+11    Europe           Southern Europe
## 8091      1.80    3785101 6.623370e+10  Americas                 Caribbean
## 8092      2.85     668165 2.034609e+10      Asia              Western Asia
## 8093      1.28   21722664 4.330246e+10    Europe            Eastern Europe
## 8094      1.33  144583147 3.067372e+11    Europe            Eastern Europe
## 8095      5.57    8686469 2.135420e+09    Africa            Eastern Africa
## 8096      2.10     161767 7.197152e+08  Americas                 Caribbean
## 8097      2.23     108354 4.348630e+08  Americas                 Caribbean
## 8098      4.45     177677 2.877139e+08   Oceania                 Polynesia
## 8099      3.48   23357887 2.042466e+11      Asia              Western Asia
## 8100      5.35   10673320 5.267879e+09    Africa            Western Africa
## 8101      1.53    9268451 6.847617e+09    Europe           Southern Europe
## 8102      2.21      85765 5.723972e+08    Africa            Eastern Africa
## 8103      5.66    4647701 1.046725e+09    Africa            Western Africa
## 8104      1.27    4254553 1.033247e+11      Asia        South-Eastern Asia
## 8105      1.22    5384533 3.257082e+10    Europe            Eastern Europe
## 8106      1.25    1988304 2.197953e+10    Europe           Southern Europe
## 8107      4.58     446352 4.144720e+08   Oceania                 Melanesia
## 8108      2.76   46971250 1.456930e+11    Africa           Southern Africa
## 8109      1.30   42475265 6.370375e+11    Europe           Southern Europe
## 8110      2.26   19217032 1.770886e+10      Asia             Southern Asia
## 8111      5.21   30365586 1.482063e+10    Africa           Northern Africa
## 8112      2.61     487641 1.036491e+09  Americas             South America
## 8113      3.98    1087949 1.604669e+09    Africa           Southern Africa
## 8114      1.73    8942926 2.625928e+11    Europe           Northern Europe
## 8115      1.42    7289901 2.534160e+11    Europe            Western Europe
## 8116      3.61   17304339 2.165974e+10      Asia              Western Asia
## 8117      3.70    6532871 1.140156e+09      Asia              Central Asia
## 8118      5.66   36866228 1.236689e+10    Africa            Eastern Africa
## 8119      1.59   64817254 1.414810e+11      Asia        South-Eastern Asia
## 8120      6.97     929431 2.839000e+08      Asia        South-Eastern Asia
## 8121      5.11    5283246 1.323945e+09    Africa            Western Africa
## 8122      4.20      99606 2.079802e+08   Oceania                 Polynesia
## 8123      1.75    1284052 1.049175e+10  Americas                 Caribbean
## 8124      2.03    9939478 2.415017e+10    Africa           Northern Africa
## 8125      2.31   66060121 2.809262e+11      Asia              Western Asia
## 8126      2.70    4648036 4.743330e+09      Asia              Central Asia
## 8127      6.72   26217760 7.541666e+09    Africa            Eastern Africa
## 8128      1.18   47493771 3.928854e+10    Europe            Eastern Europe
## 8129      2.33    3625798 1.179090e+11      Asia              Western Asia
## 8130      1.69   59548421 1.619369e+12    Europe           Northern Europe
## 8131      2.05  291005482 1.045007e+13  Americas          Northern America
## 8132      2.19    3325637 2.041210e+10  Americas             South America
## 8133      2.54   25353547 1.553814e+10      Asia              Central Asia
## 8134      4.06     198963 2.603547e+08   Oceania                 Melanesia
## 8135      2.70   25857553 1.018359e+11  Americas             South America
## 8136      4.96    3443333 3.344166e+09      Asia              Western Asia
## 8137      1.91   82683039 3.830049e+10      Asia        South-Eastern Asia
## 8138      5.78   19374012 1.078611e+10      Asia              Western Asia
## 8139      6.00   11426006 3.687375e+09    Africa            Eastern Africa
## 8140      4.00   12774162 5.131941e+09    Africa            Eastern Africa
## 8141      2.00    3103758 4.543619e+09    Europe           Southern Europe
## 8142      2.45   32817225 6.618952e+10    Africa           Northern Africa
## 8143      6.70   17295500 1.238254e+10    Africa             Middle Africa
## 8144      2.25      81718 9.457703e+08  Americas                 Caribbean
## 8145      2.31   38728778 2.872587e+11  Americas             South America
## 8146      1.40    3025982 2.986190e+09      Asia              Western Asia
## 8147      1.79      98742           NA  Americas                 Caribbean
## 8148      1.76   19985475 4.755787e+11   Oceania Australia and New Zealand
## 8149      1.42    8196624 2.038501e+11    Europe            Western Europe
## 8150      1.99    8466304 7.853540e+09      Asia              Western Asia
## 8151      1.86     322539 6.643108e+09  Americas                 Caribbean
## 8152      2.53     807989 9.934585e+09      Asia              Western Asia
## 8153      2.70  140843786 5.794234e+10      Asia             Southern Asia
## 8154      1.81     273091 2.478550e+09  Americas                 Caribbean
## 8155      1.28    9695791 1.671585e+10    Europe            Eastern Europe
## 8156      1.73   10492643 2.474900e+11    Europe            Western Europe
## 8157      3.21     276085 1.049767e+09  Americas           Central America
## 8158      5.65    7922796 2.650301e+09    Africa            Western Africa
## 8159      2.92     634235 5.843946e+08      Asia             Southern Asia
## 8160      3.81    8967740 9.363922e+09  Americas             South America
## 8161      1.21    3825872 6.679017e+09    Europe           Southern Europe
## 8162      3.08    1835750 7.160256e+09    Africa           Southern Africa
## 8163      2.14  186116363 7.169595e+11  Americas             South America
## 8164      2.21     355700 6.623798e+09      Asia        South-Eastern Asia
## 8165      1.29    7742740 1.583981e+10    Europe            Eastern Europe
## 8166      6.34   13028039 3.295912e+09    Africa            Western Africa
## 8167      6.80    7661613 9.220313e+08    Africa            Eastern Africa
## 8168      3.31   13112334 5.042604e+09      Asia        South-Eastern Asia
## 8169      5.41   17667576 1.181525e+10    Africa             Middle Africa
## 8170      1.55   31918582 7.978537e+11  Americas          Northern America
## 8171      3.04     468985 6.577719e+08    Africa            Western Africa
## 8172      5.18    3987896 8.924695e+08    Africa             Middle Africa
## 8173      7.15    9710498 2.572160e+09    Africa             Middle Africa
## 8174      1.96   15913119 8.754804e+10  Americas             South America
## 8175      1.50 1298573031 1.714992e+12      Asia              Eastern Asia
## 8176      2.52   42724157 1.144984e+11  Americas             South America
## 8177      5.25     603869 2.221217e+08    Africa            Eastern Africa
## 8178      6.81   54314855 4.920561e+09    Africa             Middle Africa
## 8179      5.12    3412592 3.647300e+09    Africa             Middle Africa
## 8180      2.13    4187039 1.839982e+10  Americas           Central America
## 8181      5.06   17802516 1.028740e+10    Africa            Western Africa
## 8182      1.37    4385045 2.566659e+10    Europe           Southern Europe
## 8183      1.59   11240680 3.511720e+10  Americas                 Caribbean
## 8184      1.55    1015827 1.050990e+10      Asia              Western Asia
## 8185      1.25   10212088 6.731205e+10    Europe            Eastern Europe
## 8186      1.78    5398645 1.663172e+11    Europe           Northern Europe
## 8187      4.07     767644 6.185155e+08    Africa            Eastern Africa
## 8188      2.78    9102997 2.611765e+10  Americas                 Caribbean
## 8189      2.90   13509645 1.983704e+10  Americas             South America
## 8190      3.09   73596068 1.136662e+11    Africa           Northern Africa
## 8191      2.50    5925089 1.424451e+10  Americas           Central America
## 8192      5.57     606201 3.814669e+09    Africa             Middle Africa
## 8193      5.58    4064958 7.815065e+08    Africa            Eastern Africa
## 8194      1.47    1363549 7.365818e+09    Europe           Northern Europe
## 8195      5.87   74506974 9.992544e+09    Africa            Eastern Africa
## 8196      2.91     818355 1.885385e+09   Oceania                 Melanesia
## 8197      1.80    5228842 1.347512e+11    Europe           Northern Europe
## 8198      1.92   60858654 1.410494e+12    Europe            Western Europe
## 8199      2.29     251811           NA   Oceania                 Polynesia
## 8200      4.41    1347524 5.361014e+09    Africa             Middle Africa
## 8201      5.83    1394727 9.212322e+08    Africa            Western Africa
## 8202      1.64    4524444 3.973376e+09      Asia              Western Asia
## 8203      1.35   81417791 1.930127e+12    Europe            Western Europe
## 8204      4.46   20840493 6.009517e+09    Africa            Western Africa
## 8205      1.33   11047739 1.482736e+11    Europe           Southern Europe
## 8206      2.42      56869 1.095471e+09  Americas          Northern America
## 8207      2.37     102657 5.173902e+08  Americas                 Caribbean
## 8208      4.46   12877711 2.168538e+10  Americas           Central America
## 8209      5.65    9464771 3.584767e+09    Africa            Western Africa
## 8210      5.54    1431816 2.037148e+08    Africa            Western Africa
## 8211      2.71     742162 7.529707e+08  Americas             South America
## 8212      3.85    9119182 3.502449e+09  Americas                 Caribbean
## 8213      3.58    6753352 8.410862e+09  Americas           Central America
## 8214      0.97    6841705 1.933896e+11      Asia              Eastern Asia
## 8215      1.29   10117213 5.471577e+10    Europe            Eastern Europe
## 8216      2.04     293084 9.997747e+09    Europe           Northern Europe
## 8217      2.88 1126419321 6.026026e+11      Asia             Southern Asia
## 8218      2.49  223268606 1.966945e+11      Asia        South-Eastern Asia
## 8219      1.90   69321953 1.270752e+11      Asia             Southern Asia
## 8220      4.63   26320530 1.914844e+10      Asia              Western Asia
## 8221      1.98    4119773 1.177815e+11    Europe           Northern Europe
## 8222      2.91    6470045 1.318654e+11      Asia              Western Asia
## 8223      1.29   58348332 1.148665e+12    Europe           Southern Europe
## 8224      2.50    2664049 9.817160e+09  Americas                 Caribbean
## 8225      1.30  126773081 4.956312e+12      Asia              Eastern Asia
## 8226      3.78    5171633 1.065961e+10      Asia              Western Asia
## 8227      2.18   15294474 2.730800e+10      Asia              Central Asia
## 8228      4.96   34437460 1.432716e+10    Africa            Eastern Africa
## 8229      3.41      90545 7.406659e+07   Oceania                Micronesia
## 8230      1.20   47320454 6.391022e+11      Asia              Eastern Asia
## 8231      2.63    2166344 5.059345e+10      Asia              Western Asia
## 8232      2.54    5077515 1.652207e+09      Asia              Central Asia
## 8233      3.62    5658894 2.187535e+09      Asia        South-Eastern Asia
## 8234      1.34    2256935 1.049753e+10    Europe           Northern Europe
## 8235      1.85    3863271 2.058068e+10      Asia              Western Asia
## 8236      3.65    1912042 8.378017e+08    Africa           Southern Africa
## 8237      5.55    3184643 5.430166e+08    Africa            Western Africa
## 8238      2.84    5703224 3.777150e+10    Africa           Northern Africa
## 8239      1.30    3376761 1.543532e+10    Europe           Northern Europe
## 8240      1.64     451826 2.293385e+10    Europe            Western Europe
## 8241      0.84     458579 9.767827e+09      Asia              Eastern Asia
## 8242      1.54    2038444 3.715388e+09    Europe           Southern Europe
## 8243      5.13   17763367 4.148368e+09    Africa            Eastern Africa
## 8244      6.00   12407618 1.875372e+09    Africa            Eastern Africa
## 8245      2.31   25332026 1.122389e+11      Asia        South-Eastern Asia
## 8246      2.60     299917 8.770616e+08      Asia             Southern Asia
## 8247      6.80   12474857 3.105261e+09    Africa            Western Africa
## 8248      1.39     394786 3.990731e+09    Europe           Southern Europe
## 8249      5.15    3064882 1.488747e+09    Africa            Western Africa
## 8250      1.82    1215835 5.261230e+09    Africa            Eastern Africa
## 8251      2.48  108257822 6.172693e+11  Americas           Central America
## 8252      3.91     106575 2.349800e+08   Oceania                Micronesia
## 8253      1.49    4166371 1.687306e+09    Europe            Eastern Europe
## 8254      2.14    2496621 1.451107e+09      Asia              Eastern Asia
## 8255      1.77     615332 1.085096e+09    Europe           Southern Europe
## 8256      2.42   30093109 4.583542e+10    Africa           Northern Africa
## 8257      5.70   20523159 5.917559e+09    Africa            Eastern Africa
## 8258      3.67    2002745 4.849719e+09    Africa           Southern Africa
## 8259      3.49   25198130 6.272912e+09      Asia             Southern Asia
## 8260      1.73   16253397 4.029226e+11    Europe            Western Europe
## 8261      2.25     225060           NA   Oceania                 Melanesia
## 8262      2.02    4078779 6.071272e+10   Oceania Australia and New Zealand
## 8263      2.90    5309703 4.408746e+09  Americas           Central America
## 8264      7.64   12996012 2.091129e+09    Africa            Western Africa
## 8265      6.03  136033321 5.873083e+10    Africa            Western Africa
## 8266      1.83    4589241 1.828977e+11    Europe           Northern Europe
## 8267      3.03    2448194 2.271540e+10      Asia              Western Asia
## 8268      3.87  150267989 8.763762e+10      Asia             Southern Asia
## 8269      2.72    3260611 1.338674e+10  Americas           Central America
## 8270      4.28    5940048 3.685102e+09   Oceania                 Melanesia
## 8271      3.35    5703742 7.800472e+09  Americas             South America
## 8272      2.73   27273188 6.125127e+10  Americas             South America
## 8273      3.57   84596249 9.678089e+10      Asia        South-Eastern Asia
## 8274      1.27   38454520 1.924047e+11    Europe            Eastern Europe
## 8275      1.43   10442446 1.212957e+11    Europe           Southern Europe
## 8276      1.78    3773183 6.823716e+10  Americas                 Caribbean
## 8277      2.70     732096 2.458686e+10      Asia              Western Asia
## 8278      1.29   21578318 4.693986e+10    Europe            Eastern Europe
## 8279      1.34  144043914 3.287485e+11    Europe            Eastern Europe
## 8280      5.46    8828956 2.293442e+09    Africa            Eastern Africa
## 8281      2.06     163462 7.602166e+08  Americas                 Caribbean
## 8282      2.20     108563 4.634589e+08  Americas                 Caribbean
## 8283      4.46     178794 3.015013e+08   Oceania                 Polynesia
## 8284      3.35   24055573 2.150041e+11      Asia              Western Asia
## 8285      5.29   10967016 5.578712e+09    Africa            Western Africa
## 8286      1.50    9225001 7.484446e+09    Europe           Southern Europe
## 8287      2.24      87356 5.560813e+08    Africa            Eastern Africa
## 8288      5.56    4870467 1.125375e+09    Africa            Western Africa
## 8289      1.26    4375230 1.127883e+11      Asia        South-Eastern Asia
## 8290      1.23    5384237 3.421819e+10    Europe            Eastern Europe
## 8291      1.29    1990924 2.294703e+10    Europe           Southern Europe
## 8292      4.54     457841 4.347744e+08   Oceania                 Melanesia
## 8293      2.72   47667150 1.523286e+11    Africa           Southern Africa
## 8294      1.33   43167276 6.578005e+11    Europe           Southern Europe
## 8295      2.27   19374281 1.867312e+10      Asia             Southern Asia
## 8296      5.12   31176209 1.508824e+10    Africa           Northern Africa
## 8297      2.56     489312 1.126696e+09  Americas             South America
## 8298      3.93    1094775 1.651311e+09    Africa           Southern Africa
## 8299      1.77    8982282 2.737132e+11    Europe           Northern Europe
## 8300      1.42    7345299 2.598343e+11    Europe            Western Europe
## 8301      3.50   17671913 2.315426e+10      Asia              Western Asia
## 8302      3.65    6666628 1.261012e+09      Asia              Central Asia
## 8303      5.65   37935334 1.333500e+10    Africa            Eastern Africa
## 8304      1.56   65404522 1.504566e+11      Asia        South-Eastern Asia
## 8305      6.88     962634 2.957000e+08      Asia        South-Eastern Asia
## 8306      5.06    5428552 1.352000e+09    Africa            Western Africa
## 8307      4.18     100226 2.101253e+08   Oceania                 Polynesia
## 8308      1.76    1290535 1.132059e+10  Americas                 Caribbean
## 8309      2.02   10017439 2.558928e+10    Africa           Northern Africa
## 8310      2.27   66973561 3.072288e+11      Asia              Western Asia
## 8311      2.66    4696876 5.559183e+09      Asia              Central Asia
## 8312      6.65   27114742 8.055045e+09    Africa            Eastern Africa
## 8313      1.21   47127110 4.404245e+10    Europe            Eastern Europe
## 8314      2.24    3975945 1.291887e+11      Asia              Western Asia
## 8315      1.72   59846226 1.667227e+12    Europe           Northern Europe
## 8316      2.06  293530886 1.081371e+13  Americas          Northern America
## 8317      2.17    3324096 2.143356e+10  Americas             South America
## 8318      2.51   25627007 1.673458e+10      Asia              Central Asia
## 8319      3.95     204144 2.720337e+08   Oceania                 Melanesia
## 8320      2.66   26314483 1.204582e+11  Americas             South America
## 8321      4.82    3507096 3.552819e+09      Asia              Western Asia
## 8322      1.90   83439812 4.128394e+10      Asia        South-Eastern Asia
## 8323      5.59   19931617 1.121461e+10      Asia              Western Asia
## 8324      5.97   11725635 3.885776e+09    Africa            Eastern Africa
## 8325      3.99   12867828 4.833902e+09    Africa            Eastern Africa
## 8326      1.92    3082172 4.793518e+09    Europe           Southern Europe
## 8327      2.51   33267887 6.956519e+10    Africa           Northern Africa
## 8328      6.66   17912942 1.464378e+10    Africa             Middle Africa
## 8329      2.22      82565 9.853788e+08  Americas                 Caribbean
## 8330      2.29   39145491 3.136260e+11  Americas             South America
## 8331      1.40    3014917 3.400247e+09      Asia              Western Asia
## 8332      1.77     100031           NA  Americas                 Caribbean
## 8333      1.79   20274282 4.896518e+11   Oceania Australia and New Zealand
## 8334      1.41    8234858 2.087439e+11    Europe            Western Europe
## 8335      1.99    8563398 9.926874e+09      Asia              Western Asia
## 8336      1.85     329243 6.868661e+09  Americas                 Caribbean
## 8337      2.45     867014 1.070948e+10      Asia              Western Asia
## 8338      2.61  142929979 6.139308e+10      Asia             Southern Asia
## 8339      1.82     274013 2.557428e+09  Americas                 Caribbean
## 8340      1.32    9640616 1.829398e+10    Europe            Eastern Europe
## 8341      1.75   10561436 2.518451e+11    Europe            Western Europe
## 8342      3.12     283279 1.081554e+09  Americas           Central America
## 8343      5.55    8182362 2.727160e+09    Africa            Western Africa
## 8344      2.79     651163 6.356662e+08      Asia             Southern Asia
## 8345      3.72    9125405 9.777942e+09  Americas             South America
## 8346      1.20    3833377 7.012968e+09    Europe           Southern Europe
## 8347      3.02    1864003 7.277849e+09    Africa           Southern Africa
## 8348      2.07  188479240 7.396131e+11  Americas             South America
## 8349      2.18     361889 6.649465e+09      Asia        South-Eastern Asia
## 8350      1.33    7682614 1.684695e+10    Europe            Eastern Europe
## 8351      6.27   13421929 3.581061e+09    Africa            Western Africa
## 8352      6.73    7934213 9.303295e+08    Africa            Eastern Africa
## 8353      3.23   13320058 5.710754e+09      Asia        South-Eastern Asia
## 8354      5.36   18126999 1.208660e+10    Africa             Middle Africa
## 8355      1.57   32256333 8.219414e+11  Americas          Northern America
## 8356      2.90     474224 7.006644e+08    Africa            Western Africa
## 8357      5.09    4055608 9.138887e+08    Africa             Middle Africa
## 8358      7.07   10067932 3.017981e+09    Africa             Middle Africa
## 8359      1.94   16096571 9.128786e+10  Americas             South America
## 8360      1.51 1305600630 1.908786e+12      Asia              Eastern Asia
## 8361      2.50   43285636 1.198873e+11  Americas             South America
## 8362      5.22     618632 2.315172e+08    Africa            Eastern Africa
## 8363      6.73   56089536 5.303776e+09    Africa             Middle Africa
## 8364      5.12    3503086 3.931789e+09    Africa             Middle Africa
## 8365      2.07    4247843 1.948291e+10  Americas           Central America
## 8366      5.00   18132702 1.041660e+10    Africa            Western Africa
## 8367      1.38    4378056 2.676507e+10    Europe           Southern Europe
## 8368      1.57   11261052 3.905093e+10  Americas                 Caribbean
## 8369      1.53    1032586 1.092083e+10      Asia              Western Asia
## 8370      1.30   10230877 7.185727e+10    Europe            Eastern Europe
## 8371      1.80    5417692 1.703839e+11    Europe           Northern Europe
## 8372      3.99     778406 6.381200e+08    Africa            Eastern Africa
## 8373      2.75    9237565 2.853687e+10  Americas                 Caribbean
## 8374      2.85   13735232 2.097643e+10  Americas             South America
## 8375      3.05   74942115 1.187490e+11    Africa           Northern Africa
## 8376      2.43    5947206 1.475202e+10  Americas           Central America
## 8377      5.52     625866 4.186550e+09    Africa             Middle Africa
## 8378      5.48    4191273 8.015584e+08    Africa            Eastern Africa
## 8379      1.52    1355662 8.017951e+09    Europe           Northern Europe
## 8380      5.69   76608431 1.117355e+10    Africa            Eastern Africa
## 8381      2.86     821820 1.898582e+09   Oceania                 Melanesia
## 8382      1.80    5246368 1.386807e+11    Europe           Northern Europe
## 8383      1.94   61241700 1.436256e+12    Europe            Western Europe
## 8384      2.25     254884           NA   Oceania                 Polynesia
## 8385      4.37    1377777 5.523002e+09    Africa             Middle Africa
## 8386      5.81    1440542 9.236713e+08    Africa            Western Africa
## 8387      1.68    4475273 4.354806e+09      Asia              Western Asia
## 8388      1.35   81246801 1.943341e+12    Europe            Western Europe
## 8389      4.39   21389514 6.364079e+09    Africa            Western Africa
## 8390      1.36   11069662 1.516547e+11    Europe           Southern Europe
## 8391      2.38      56953 1.117157e+09  Americas          Northern America
## 8392      2.34     102951 5.796802e+08  Americas                 Caribbean
## 8393      4.37   13183505 2.239236e+10  Americas           Central America
## 8394      5.58    9669023 4.938242e+09    Africa            Western Africa
## 8395      5.46    1462784 2.107702e+08    Africa            Western Africa
## 8396      2.74     742495 7.382357e+08  Americas             South America
## 8397      3.75    9263409 3.565486e+09  Americas                 Caribbean
## 8398      3.49    6880181 8.919793e+09  Americas           Central America
## 8399      0.99    6842465 2.070857e+11      Asia              Eastern Asia
## 8400      1.30   10095964 5.688494e+10    Europe            Eastern Europe
## 8401      2.06     296745 1.072058e+10    Europe           Northern Europe
## 8402      2.82 1144326293 6.585534e+11      Asia             Southern Asia
## 8403      2.49  226254703 2.078915e+11      Asia        South-Eastern Asia
## 8404      1.87   70122115 1.329504e+11      Asia             Southern Asia
## 8405      4.56   27017712 1.901440e+10      Asia              Western Asia
## 8406      1.99    4203700 1.240706e+11    Europe           Northern Europe
## 8407      2.91    6603677 1.383801e+11      Asia              Western Asia
## 8408      1.32   58657355 1.159362e+12    Europe           Southern Europe
## 8409      2.47    2677888 9.918241e+09  Americas                 Caribbean
## 8410      1.31  126978754 5.020879e+12      Asia              Eastern Asia
## 8411      3.73    5332982 1.152531e+10      Asia              Western Asia
## 8412      2.28   15451752 2.995688e+10      Asia              Central Asia
## 8413      4.92   35349040 1.517342e+10    Africa            Eastern Africa
## 8414      3.32      92329 7.428881e+07   Oceania                Micronesia
## 8415      1.20   47605863 6.643925e+11      Asia              Eastern Asia
## 8416      2.63    2263604 5.595636e+10      Asia              Western Asia
## 8417      2.58    5115470 1.649306e+09      Asia              Central Asia
## 8418      3.56    5745012 2.343015e+09      Asia        South-Eastern Asia
## 8419      1.39    2227559 1.161037e+10    Europe           Northern Europe
## 8420      1.77    3986865 2.078649e+10      Asia              Western Asia
## 8421      3.56    1925844 8.604601e+08    Africa           Southern Africa
## 8422      5.46    3269786 5.945020e+08    Africa            Western Africa
## 8423      2.79    5801543 4.151087e+10    Africa           Northern Africa
## 8424      1.33    3343268 1.663962e+10    Europe           Northern Europe
## 8425      1.63     457847 2.417912e+10    Europe            Western Europe
## 8426      0.85     468149 1.060216e+10      Asia              Eastern Asia
## 8427      1.52    2042894 3.877088e+09    Europe           Southern Europe
## 8428      5.04   18290394 4.339313e+09    Africa            Eastern Africa
## 8429      5.95   12747846 1.924132e+09    Africa            Eastern Africa
## 8430      2.22   25796124 1.182237e+11      Asia        South-Eastern Asia
## 8431      2.51     304968 8.171070e+08      Asia             Southern Asia
## 8432      6.80   12881384 3.294054e+09    Africa            Western Africa
## 8433      1.38     397094 4.137016e+09    Europe           Southern Europe
## 8434      5.10    3154087 1.622278e+09    Africa            Western Africa
## 8435      1.75    1222006 5.326542e+09    Africa            Eastern Africa
## 8436      2.45  109747906 6.370555e+11  Americas           Central America
## 8437      3.82     106198 2.399027e+08   Oceania                Micronesia
## 8438      1.49    4157707 1.813877e+09    Europe            Eastern Europe
## 8439      2.19    2526447 1.556366e+09      Asia              Eastern Asia
## 8440      1.76     616389 1.130670e+09    Europe           Southern Europe
## 8441      2.39   30385479 4.720063e+10    Africa           Northern Africa
## 8442      5.67   21126676 6.483607e+09    Africa            Eastern Africa
## 8443      3.59    2027026 4.972328e+09    Africa           Southern Africa
## 8444      3.34   25506847 6.491158e+09      Asia             Southern Asia
## 8445      1.71   16331646 4.111683e+11    Europe            Western Europe
## 8446      2.24     228683           NA   Oceania                 Melanesia
## 8447      2.05    4134699 6.271785e+10   Oceania Australia and New Zealand
## 8448      2.85    5379327 4.597553e+09  Americas           Central America
## 8449      7.62   13485436 2.185230e+09    Africa            Western Africa
## 8450      6.02  139611303 6.190230e+10    Africa            Western Africa
## 8451      1.84    4624388 1.876328e+11    Europe           Northern Europe
## 8452      2.95    2506891 2.362265e+10      Asia              Western Asia
## 8453      3.79  153356383 9.435706e+10      Asia             Southern Asia
## 8454      2.70    3319301 1.434942e+10  Americas           Central America
## 8455      4.23    6086905 3.817622e+09   Oceania                 Melanesia
## 8456      3.27    5795493 8.023446e+09  Americas             South America
## 8457      2.69   27610406 6.543270e+10  Americas             South America
## 8458      3.49   86141373 1.014048e+11      Asia        South-Eastern Asia
## 8459      1.28   38463514 1.993641e+11    Europe            Eastern Europe
## 8460      1.41   10480085 1.222359e+11    Europe           Southern Europe
## 8461      1.75    3761143 6.880086e+10  Americas                 Caribbean
## 8462      2.56     836924 2.645546e+10      Asia              Western Asia
## 8463      1.30   21407619 4.889833e+10    Europe            Eastern Europe
## 8464      1.29  143622566 3.497101e+11    Europe            Eastern Europe
## 8465      5.37    9008230 2.506732e+09    Africa            Eastern Africa
## 8466      2.04     165407 7.931960e+08  Americas                 Caribbean
## 8467      2.17     108749 4.733193e+08  Americas                 Caribbean
## 8468      4.46     179928 3.140007e+08   Oceania                 Polynesia
## 8469      3.23   24745230 2.269447e+11      Asia              Western Asia
## 8470      5.23   11268994 5.892631e+09    Africa            Western Africa
## 8471      1.47    9186685 7.888606e+09    Europe           Southern Europe
## 8472      2.26      88747 5.976235e+08    Africa            Eastern Africa
## 8473      5.45    5071271 1.206158e+09    Africa            Western Africa
## 8474      1.26    4495531 1.211012e+11      Asia        South-Eastern Asia
## 8475      1.24    5385192 3.649549e+10    Europe            Eastern Europe
## 8476      1.32    1996522 2.386657e+10    Europe           Southern Europe
## 8477      4.50     469306 4.583443e+08   Oceania                 Melanesia
## 8478      2.68   48352951 1.603672e+11    Africa           Southern Africa
## 8479      1.35   43854761 6.813737e+11    Europe           Southern Europe
## 8480      2.29   19526406 1.983865e+10      Asia             Southern Asia
## 8481      5.04   31990003 1.604268e+10    Africa           Northern Africa
## 8482      2.52     491999 1.178026e+09  Americas             South America
## 8483      3.87    1104642 1.691988e+09    Africa           Southern Africa
## 8484      1.79    9030163 2.823647e+11    Europe           Northern Europe
## 8485      1.43    7408608 2.666956e+11    Europe            Western Europe
## 8486      3.40   18132842 2.458982e+10      Asia              Western Asia
## 8487      3.64    6805655 1.393236e+09      Asia              Central Asia
## 8488      5.64   39065600 1.431778e+10    Africa            Eastern Africa
## 8489      1.54   65863973 1.573847e+11      Asia        South-Eastern Asia
## 8490      6.79     989497 3.141000e+08      Asia        South-Eastern Asia
## 8491      5.01    5578219 1.367960e+09    Africa            Western Africa
## 8492      4.14     100858 2.081294e+08   Oceania                 Polynesia
## 8493      1.77    1296933 1.197320e+10  Americas                 Caribbean
## 8494      2.03   10102477 2.661289e+10    Africa           Northern Africa
## 8495      2.23   67860617 3.330410e+11      Asia              Western Asia
## 8496      2.62    4747839 6.281877e+09      Asia              Central Asia
## 8497      6.58   28042413 8.565136e+09    Africa            Eastern Africa
## 8498      1.26   46795313 4.523160e+10    Europe            Eastern Europe
## 8499      2.15    4481976 1.354609e+11      Asia              Western Asia
## 8500      1.76   60210012 1.702002e+12    Europe           Northern Europe
## 8501      2.06  296139635 1.114630e+13  Americas          Northern America
## 8502      2.16    3325608 2.303253e+10  Americas             South America
## 8503      2.49   25922239 1.790600e+10      Asia              Central Asia
## 8504      3.85     209375 2.863089e+08   Oceania                 Melanesia
## 8505      2.63   26769115 1.328870e+11  Americas             South America
## 8506      4.70    3579462 3.775941e+09      Asia              Western Asia
## 8507      1.90   84203817 4.476905e+10      Asia        South-Eastern Asia
## 8508      5.39   20504385 1.184170e+10      Asia              Western Asia
## 8509      5.95   12043591 4.093330e+09    Africa            Eastern Africa
## 8510      3.97   12984418 4.557834e+09    Africa            Eastern Africa
## 8511      1.85    3050741 5.033194e+09    Europe           Southern Europe
## 8512      2.58   33749328 7.095649e+10    Africa           Northern Africa
## 8513      6.60   18541467 1.768017e+10    Africa             Middle Africa
## 8514      2.20      83467 1.116208e+09  Americas                 Caribbean
## 8515      2.27   39558750 3.401778e+11  Americas             South America
## 8516      1.30    3002161 3.849011e+09      Asia              Western Asia
## 8517      1.75     100830           NA  Americas                 Caribbean
## 8518      1.82   20606228 5.047399e+11   Oceania Australia and New Zealand
## 8519      1.41    8269372 2.164043e+11    Europe            Western Europe
## 8520      1.99    8662137 1.335165e+10      Asia              Western Asia
## 8521      1.86     335801 7.041536e+09  Americas                 Caribbean
## 8522      2.37     940808 1.142702e+10      Asia              Western Asia
## 8523      2.52  144839238 6.546304e+10      Asia             Southern Asia
## 8524      1.82     275040 2.644872e+09  Americas                 Caribbean
## 8525      1.35    9594233 2.012301e+10    Europe            Eastern Europe
## 8526      1.78   10632032 2.586906e+11    Europe            Western Europe
## 8527      3.04     290751 1.131879e+09  Americas           Central America
## 8528      5.46    8443717 2.838974e+09    Africa            Western Africa
## 8529      2.68     666920 6.792052e+08      Asia             Southern Asia
## 8530      3.63    9283345 1.024699e+10  Americas             South America
## 8531      1.20    3838504 7.447772e+09    Europe           Southern Europe
## 8532      2.96    1895671 7.651618e+09    Africa           Southern Africa
## 8533      2.00  190698241 7.688675e+11  Americas             South America
## 8534      2.15     368150 6.941890e+09      Asia        South-Eastern Asia
## 8535      1.37    7624611 1.795250e+10    Europe            Eastern Europe
## 8536      6.19   13834195 3.823421e+09    Africa            Western Africa
## 8537      6.65    8218070 9.804246e+08    Africa            Eastern Africa
## 8538      3.16   13525360 6.325864e+09      Asia        South-Eastern Asia
## 8539      5.30   18597109 1.247605e+10    Africa             Middle Africa
## 8540      1.61   32611436 8.451451e+11  Americas          Northern America
## 8541      2.77     478265 7.717242e+08    Africa            Western Africa
## 8542      5.00    4127112 9.486165e+08    Africa             Middle Africa
## 8543      6.99   10423616 3.024017e+09    Africa             Middle Africa
## 8544      1.92   16279728 9.648609e+10  Americas             South America
## 8545      1.52 1312600877 2.151202e+12      Asia              Eastern Asia
## 8546      2.48   43835744 1.279168e+11  Americas             South America
## 8547      5.17     633814 2.343930e+08    Africa            Eastern Africa
## 8548      6.64   57926840 5.599793e+09    Africa             Middle Africa
## 8549      5.11    3604595 4.173101e+09    Africa             Middle Africa
## 8550      2.01    4308790 2.119344e+10  Americas           Central America
## 8551      4.96   18486392 1.048785e+10    Africa            Western Africa
## 8552      1.40    4368518 2.808599e+10    Europe           Southern Europe
## 8553      1.55   11275199 4.376274e+10  Americas                 Caribbean
## 8554      1.51    1048293 1.137135e+10      Asia              Western Asia
## 8555      1.35   10271476 7.690192e+10    Europe            Eastern Europe
## 8556      1.85    5440696 1.761679e+11    Europe           Northern Europe
## 8557      3.91     788941 6.687489e+08    Africa            Eastern Africa
## 8558      2.72    9371333 3.158208e+10  Americas                 Caribbean
## 8559      2.81   13967490 2.197312e+10  Americas             South America
## 8560      3.02   76274285 1.268760e+11    Africa           Northern Africa
## 8561      2.39    5967556 1.532911e+10  Americas           Central America
## 8562      5.46     645718 4.239290e+09    Africa             Middle Africa
## 8563      5.37    4304440 7.938701e+08    Africa            Eastern Africa
## 8564      1.57    1349369 8.827551e+09    Europe           Northern Europe
## 8565      5.52   78735675 1.238416e+10    Africa            Eastern Africa
## 8566      2.82     827390 1.933591e+09   Oceania                 Melanesia
## 8567      1.84    5266600 1.447973e+11    Europe           Northern Europe
## 8568      1.95   61609991 1.471688e+12    Europe            Western Europe
## 8569      2.22     257731           NA   Oceania                 Polynesia
## 8570      4.34    1408920 5.588239e+09    Africa             Middle Africa
## 8571      5.80    1487731 9.545717e+08    Africa            Western Africa
## 8572      1.72    4429186 4.763429e+09      Asia              Western Asia
## 8573      1.36   81055904 2.015245e+12    Europe            Western Europe
## 8574      4.33   21951891 6.771380e+09    Africa            Western Africa
## 8575      1.40   11098212 1.600609e+11    Europe           Southern Europe
## 8576      2.26      56958 1.167082e+09  Americas          Northern America
## 8577      2.32     103259 5.684974e+08  Americas                 Caribbean
## 8578      4.28   13490041 2.359703e+10  Americas           Central America
## 8579      5.50    9898301 5.061532e+09    Africa            Western Africa
## 8580      5.39    1494603 2.152730e+08    Africa            Western Africa
## 8581      2.75     743705 7.761043e+08  Americas             South America
## 8582      3.66    9409479 3.645816e+09  Americas                 Caribbean
## 8583      3.41    7007029 9.505547e+09  Americas           Central America
## 8584      1.01    6855818 2.216227e+11      Asia              Eastern Asia
## 8585      1.31   10078461 5.910184e+10    Europe            Eastern Europe
## 8586      2.09     300887 1.122541e+10    Europe           Northern Europe
## 8587      2.75 1162088305 7.195616e+11      Asia             Southern Asia
## 8588      2.50  229263980 2.193275e+11      Asia        South-Eastern Asia
## 8589      1.87   70923164 1.407864e+11      Asia             Southern Asia
## 8590      4.48   27716983 2.019330e+10      Asia              Western Asia
## 8591      1.99    4293942 1.306609e+11    Europe           Northern Europe
## 8592      2.91    6754836 1.461214e+11      Asia              Western Asia
## 8593      1.34   58918471 1.184856e+12    Europe           Southern Europe
## 8594      2.44    2691444 1.023562e+10  Americas                 Caribbean
## 8595      1.32  127136576 5.105878e+12      Asia              Eastern Asia
## 8596      3.69    5530218 1.245977e+10      Asia              Western Asia
## 8597      2.38   15603072 3.316226e+10      Asia              Central Asia
## 8598      4.88   36286015 1.613399e+10    Africa            Eastern Africa
## 8599      3.25      94257 7.569971e+07   Oceania                Micronesia
## 8600      1.20   47901643 6.987993e+11      Asia              Eastern Asia
## 8601      2.65    2389498 5.886609e+10      Asia              Western Asia
## 8602      2.65    5166644 1.700483e+09      Asia              Central Asia
## 8603      3.52    5838837 2.544966e+09      Asia        South-Eastern Asia
## 8604      1.43    2199105 1.303069e+10    Europe           Northern Europe
## 8605      1.69    4057041 2.091133e+10      Asia              Western Asia
## 8606      3.48    1940345 8.975239e+08    Africa           Southern Africa
## 8607      5.37    3384804 6.526397e+08    Africa            Western Africa
## 8608      2.74    5907149 4.396002e+10    Africa           Northern Africa
## 8609      1.35    3305529 1.794498e+10    Europe           Northern Europe
## 8610      1.62     465546 2.538135e+10    Europe            Western Europe
## 8611      0.87     479728 1.213222e+10      Asia              Eastern Asia
## 8612      1.50    2047330 4.072130e+09    Europe           Southern Europe
## 8613      4.95   18826129 4.557259e+09    Africa            Eastern Africa
## 8614      5.90   13112383 2.072290e+09    Africa            Eastern Africa
## 8615      2.15   26263048 1.251384e+11      Asia        South-Eastern Asia
## 8616      2.45     310168 9.771407e+08      Asia             Southern Asia
## 8617      6.80   13309942 3.468639e+09    Africa            Western Africa
## 8618      1.37     399892 4.229019e+09    Europe           Southern Europe
## 8619      5.04    3241762 1.928388e+09    Africa            Western Africa
## 8620      1.69    1227714 5.536815e+09    Africa            Eastern Africa
## 8621      2.41  111382857 6.698648e+11  Americas           Central America
## 8622      3.74     105680 2.402711e+08   Oceania                Micronesia
## 8623      1.49    4144651 1.900665e+09    Europe            Eastern Europe
## 8624      2.25    2558484 1.689532e+09      Asia              Eastern Asia
## 8625      1.75     617462 1.227908e+09    Europe           Southern Europe
## 8626      2.38   30691434 5.086333e+10    Africa           Northern Africa
## 8627      5.63   21737860 6.893450e+09    Africa            Eastern Africa
## 8628      3.51    2053915 5.324021e+09    Africa           Southern Africa
## 8629      3.19   25794344 6.709560e+09      Asia             Southern Asia
## 8630      1.72   16401105 4.251241e+11    Europe            Western Europe
## 8631      2.23     232283           NA   Oceania                 Melanesia
## 8632      2.09    4187584 6.320098e+10   Oceania Australia and New Zealand
## 8633      2.80    5450217 4.788455e+09  Americas           Central America
## 8634      7.60   13995530 2.311974e+09    Africa            Western Africa
## 8635      6.02  143318011 6.574024e+10    Africa            Western Africa
## 8636      1.90    4667105 1.922334e+11    Europe           Northern Europe
## 8637      2.91    2553376 2.492190e+10      Asia              Western Asia
## 8638      3.71  156524189 1.001860e+11      Asia             Southern Asia
## 8639      2.67    3378600 1.557310e+10  Americas           Central America
## 8640      4.17    6236158 3.916289e+09   Oceania                 Melanesia
## 8641      3.19    5882797 8.371708e+09  Americas             South America
## 8642      2.65   27949958 7.049752e+10  Americas             South America
## 8643      3.40   87592899 1.067214e+11      Asia        South-Eastern Asia
## 8644      1.29   38478763 2.117794e+11    Europe            Eastern Europe
## 8645      1.39   10516559 1.240062e+11    Europe           Southern Europe
## 8646      1.73    3749653 6.869852e+10  Americas                 Caribbean
## 8647      2.42     988448 3.137617e+10      Asia              Western Asia
## 8648      1.31   21205977 5.276130e+10    Europe            Eastern Europe
## 8649      1.30  143338407 3.782235e+11    Europe            Eastern Europe
## 8650      5.27    9231041 2.737351e+09    Africa            Eastern Africa
## 8651      2.03     167656 8.398654e+08  Americas                 Caribbean
## 8652      2.15     108908 5.184250e+08  Americas                 Caribbean
## 8653      4.46     181072 3.202416e+08   Oceania                 Polynesia
## 8654      3.14   25419994 2.341111e+11      Asia              Western Asia
## 8655      5.18   11578430 6.041596e+09    Africa            Western Africa
## 8656      1.45    9154760 8.172595e+09    Europe           Southern Europe
## 8657      2.28      89896 6.532424e+08    Africa            Eastern Africa
## 8658      5.34    5243214 1.293977e+09    Africa            Western Africa
## 8659      1.28    4614637 1.317141e+11      Asia        South-Eastern Asia
## 8660      1.26    5387734 3.954119e+10    Europe            Eastern Europe
## 8661      1.36    2005566 2.526267e+10    Europe           Southern Europe
## 8662      4.46     480716 4.901839e+08   Oceania                 Melanesia
## 8663      2.63   49027805 1.693537e+11    Africa           Southern Africa
## 8664      1.38   44537926 7.091480e+11    Europe           Southern Europe
## 8665      2.30   19672418 2.135977e+10      Asia             Southern Asia
## 8666      4.96   32809056 1.785460e+10    Africa           Northern Africa
## 8667      2.48     495953 1.223313e+09  Americas             South America
## 8668      3.82    1118204 1.747867e+09    Africa           Southern Africa
## 8669      1.87    9087251 2.944984e+11    Europe           Northern Europe
## 8670      1.44    7480317 2.763777e+11    Europe            Western Europe
## 8671      3.31   18728200 2.581931e+10      Asia              Western Asia
## 8672      3.64    6949566 1.175017e+09      Asia              Central Asia
## 8673      5.62   40260847 1.528242e+10    Africa            Eastern Africa
## 8674      1.52   66174486 1.654002e+11      Asia        South-Eastern Asia
## 8675      6.70    1008389 3.042157e+08      Asia        South-Eastern Asia
## 8676      4.96    5732175 1.423395e+09    Africa            Western Africa
## 8677      4.10     101507 2.083730e+08   Oceania                 Polynesia
## 8678      1.78    1303141 1.355366e+10  Americas                 Caribbean
## 8679      2.03   10196441 2.811765e+10    Africa           Northern Africa
## 8680      2.20   68704721 3.559991e+11      Asia              Western Asia
## 8681      2.57    4801594 6.998011e+09      Asia              Central Asia
## 8682      6.51   29000925 9.488864e+09    Africa            Eastern Africa
## 8683      1.30   46502718 4.853351e+10    Europe            Eastern Europe
## 8684      2.07    5171255 1.488800e+11      Asia              Western Asia
## 8685      1.80   60648850 1.746375e+12    Europe           Northern Europe
## 8686      2.11  298860519 1.144269e+13  Americas          Northern America
## 8687      2.14    3331041 2.397654e+10  Americas             South America
## 8688      2.48   26242947 1.921313e+10      Asia              Central Asia
## 8689      3.76     214635 3.073820e+08   Oceania                 Melanesia
## 8690      2.60   27221228 1.460058e+11  Americas             South America
## 8691      4.58    3662561           NA      Asia              Western Asia
## 8692      1.89   84979667 4.845303e+10      Asia        South-Eastern Asia
## 8693      5.20   21093973 1.221713e+10      Asia              Western Asia
## 8694      5.93   12381509 4.348148e+09    Africa            Eastern Africa
## 8695      3.94   13127942 4.400065e+09    Africa            Eastern Africa
## 8696      1.80    3010849 5.330153e+09    Europe           Southern Europe
## 8697      2.66   34261971 7.308519e+10    Africa           Northern Africa
## 8698      6.52   19183907 2.167467e+10    Africa             Middle Africa
## 8699      2.18      84397 1.009354e+09  Americas                 Caribbean
## 8700      2.25   39969903 3.696145e+11  Americas             South America
## 8701      1.40    2988117 4.378220e+09      Asia              Western Asia
## 8702      1.74     101218           NA  Americas                 Caribbean
## 8703      1.92   20975949 5.227297e+11   Oceania Australia and New Zealand
## 8704      1.38    8301290 2.244241e+11    Europe            Western Europe
## 8705      1.99    8763359 1.669610e+10      Asia              Western Asia
## 8706      1.88     342259 7.143393e+09  Americas                 Caribbean
## 8707      2.29    1026568 1.238003e+10      Asia              Western Asia
## 8708      2.44  146592687 6.967090e+10      Asia             Southern Asia
## 8709      1.83     276154 2.657506e+09  Americas                 Caribbean
## 8710      1.39    9556061 2.186311e+10    Europe            Eastern Europe
## 8711      1.80   10704830 2.662437e+11    Europe            Western Europe
## 8712      2.97     298403 1.147050e+09  Americas           Central America
## 8713      5.37    8707637 2.969567e+09    Africa            Western Africa
## 8714      2.59     681471 8.009574e+08      Asia             Southern Asia
## 8715      3.55    9441482 1.071470e+10  Americas             South America
## 8716      1.21    3840418 7.957051e+09    Europe           Southern Europe
## 8717      2.91    1930431 8.019554e+09    Africa           Southern Africa
## 8718      1.94  192784521 8.157034e+11  Americas             South America
## 8719      2.12     374459 6.952621e+09      Asia        South-Eastern Asia
## 8720      1.40    7568378 1.910146e+10    Europe            Eastern Europe
## 8721      6.12   14264002 3.961301e+09    Africa            Western Africa
## 8722      6.57    8514578 1.027346e+09    Africa            Eastern Africa
## 8723      3.10   13728700 6.971897e+09      Asia        South-Eastern Asia
## 8724      5.24   19078100 1.291271e+10    Africa             Middle Africa
## 8725      1.66   32982275 8.637384e+11  Americas          Northern America
## 8726      2.66     481278 8.384718e+08    Africa            Western Africa
## 8727      4.90    4202104 9.837153e+08    Africa             Middle Africa
## 8728      6.90   10779504 3.030065e+09    Africa             Middle Africa
## 8729      1.90   16462701 1.014656e+11  Americas             South America
## 8730      1.53 1319625197 2.456673e+12      Asia              Eastern Asia
## 8731      2.45   44374647 1.367438e+11  Americas             South America
## 8732      5.11     649404 2.355439e+08    Africa            Eastern Africa
## 8733      6.55   59834875 5.950215e+09    Africa             Middle Africa
## 8734      5.11    3715665 4.106749e+09    Africa             Middle Africa
## 8735      1.95    4369465 2.287521e+10  Americas           Central America
## 8736      4.93   18862172 1.066768e+10    Africa            Western Africa
## 8737      1.41    4357114 2.950713e+10    Europe           Southern Europe
## 8738      1.52   11284043 4.694085e+10  Americas                 Caribbean
## 8739      1.50    1063040 1.195476e+10      Asia              Western Asia
## 8740      1.39   10330487 8.131235e+10    Europe            Eastern Europe
## 8741      1.85    5466988 1.789571e+11    Europe           Northern Europe
## 8742      3.83     799309 7.028555e+08    Africa            Eastern Africa
## 8743      2.69    9504336 3.425854e+10  Americas                 Caribbean
## 8744      2.77   14205479 2.242087e+10  Americas             South America
## 8745      2.99   77605327 1.358688e+11    Africa           Northern Africa
## 8746      2.35    5986414 1.591771e+10  Americas           Central America
## 8747      5.39     665798 5.148299e+09    Africa             Middle Africa
## 8748      5.27    4406299 8.051948e+08    Africa            Eastern Africa
## 8749      1.60    1344233 9.488929e+09    Europe           Northern Europe
## 8750      5.35   80891968 1.380289e+10    Africa            Eastern Africa
## 8751      2.77     834729 1.917140e+09   Oceania                 Melanesia
## 8752      1.83    5289333 1.525226e+11    Europe           Northern Europe
## 8753      1.96   61966193 1.505322e+12    Europe            Western Europe
## 8754      2.18     260361           NA   Oceania                 Polynesia
## 8755      4.30    1440902 5.898574e+09    Africa             Middle Africa
## 8756      5.80    1536424 1.011867e+09    Africa            Western Africa
## 8757      1.76    4385885 5.351427e+09      Asia              Western Asia
## 8758      1.36   80854515 2.081124e+12    Europe            Western Europe
## 8759      4.26   22528041 7.208793e+09    Africa            Western Africa
## 8760      1.43   11131302 1.648566e+11    Europe           Southern Europe
## 8761      2.30      56896 1.231424e+09  Americas          Northern America
## 8762      2.30     103587 6.042228e+08  Americas                 Caribbean
## 8763      4.20   13797629 2.508459e+10  Americas           Central America
## 8764      5.42   10152521 5.150498e+09    Africa            Western Africa
## 8765      5.32    1527342 2.221664e+08    Africa            Western Africa
## 8766      2.75     745638 8.305893e+08  Americas             South America
## 8767      3.58    9556958 3.767706e+09  Americas                 Caribbean
## 8768      3.34    7133737 1.009378e+10  Americas           Central America
## 8769      1.02    6878566 2.357829e+11      Asia              Eastern Asia
## 8770      1.32   10064138 5.916963e+10    Europe            Eastern Europe
## 8771      2.11     305415 1.189725e+10    Europe           Northern Europe
## 8772      2.69 1179685631 7.900883e+11      Asia             Southern Asia
## 8773      2.49  232296830 2.332438e+11      Asia        South-Eastern Asia
## 8774      1.87   71720859 1.518026e+11      Asia             Southern Asia
## 8775      4.41   28423538 2.049620e+10      Asia              Western Asia
## 8776      2.00    4388612 1.374321e+11    Europe           Northern Europe
## 8777      2.91    6920762 1.541534e+11      Asia              Western Asia
## 8778      1.37   59138599 1.204797e+12    Europe           Southern Europe
## 8779      2.41    2704606 1.029704e+10  Americas                 Caribbean
## 8780      1.33  127250015 5.217808e+12      Asia              Eastern Asia
## 8781      3.64    5759424 1.347844e+10      Asia              Western Asia
## 8782      2.46   15755242 3.611370e+10      Asia              Central Asia
## 8783      4.82   37250540 1.726229e+10    Africa            Eastern Africa
## 8784      3.19      96310 7.600801e+07   Oceania                Micronesia
## 8785      1.21   48205062 7.344787e+11      Asia              Eastern Asia
## 8786      2.67    2538591 6.144030e+10      Asia              Western Asia
## 8787      2.73    5228937 1.845753e+09      Asia              Central Asia
## 8788      3.48    5939634 2.738303e+09      Asia        South-Eastern Asia
## 8789      1.47    2171378 1.433084e+10    Europe           Northern Europe
## 8790      1.62    4085426 2.247986e+10      Asia              Western Asia
## 8791      3.41    1955656 9.400079e+08    Africa           Southern Africa
## 8792      5.28    3522337 7.550262e+08    Africa            Western Africa
## 8793      2.69    6017794 4.659762e+10    Africa           Northern Africa
## 8794      1.39    3264304 1.971072e+10    Europe           Northern Europe
## 8795      1.62     474705 2.706632e+10    Europe            Western Europe
## 8796      0.91     493022 1.387694e+10      Asia              Eastern Asia
## 8797      1.49    2051427 4.322520e+09    Europe           Southern Europe
## 8798      4.87   19371031 4.841664e+09    Africa            Eastern Africa
## 8799      5.84   13498377 2.192483e+09    Africa            Eastern Africa
## 8800      2.09   26730607 1.332476e+11      Asia        South-Eastern Asia
## 8801      2.41     315515 1.080295e+09      Asia             Southern Asia
## 8802      6.81   13759226 3.617791e+09    Africa            Western Africa
## 8803      1.38     403076 4.409988e+09    Europe           Southern Europe
## 8804      4.99    3328285 1.959519e+09    Africa            Western Africa
## 8805      1.63    1232997 5.862116e+09    Africa            Eastern Africa
## 8806      2.38  113139374 6.917040e+11  Americas           Central America
## 8807      3.66     105080 2.351388e+08   Oceania                Micronesia
## 8808      1.49    4128459 1.958977e+09    Europe            Eastern Europe
## 8809      2.32    2592776 1.862676e+09      Asia              Eastern Asia
## 8810      1.73     618592 1.359294e+09    Europe           Southern Europe
## 8811      2.40   31011322 5.223958e+10    Africa           Northern Africa
## 8812      5.59   22359637 7.395431e+09    Africa            Eastern Africa
## 8813      3.44    2083174 5.610147e+09    Africa           Southern Africa
## 8814      3.05   26063619 6.938461e+09      Asia             Southern Asia
## 8815      1.72   16463031 4.417917e+11    Europe            Western Europe
## 8816      2.23     235854           NA   Oceania                 Melanesia
## 8817      2.11    4238021 6.508412e+10   Oceania Australia and New Zealand
## 8818      2.76    5522119 4.962900e+09  Americas           Central America
## 8819      7.59   14527631 2.390581e+09    Africa            Western Africa
## 8820      6.02  147152502 6.998038e+10    Africa            Western Africa
## 8821      1.90    4716584 1.973333e+11    Europe           Northern Europe
## 8822      2.89    2593750 2.661659e+10      Asia              Western Asia
## 8823      3.65  159767672 1.058797e+11      Asia             Southern Asia
## 8824      2.64    3438398 1.745942e+10  Americas           Central America
## 8825      4.12    6387470 4.198262e+09   Oceania                 Melanesia
## 8826      3.12    5966160 8.937744e+09  Americas             South America
## 8827      2.61   28292768 7.677576e+10  Americas             South America
## 8828      3.33   88965508 1.137828e+11      Asia        South-Eastern Asia
## 8829      1.31   38500356 2.261492e+11    Europe            Eastern Europe
## 8830      1.37   10550695 1.269393e+11    Europe           Southern Europe
## 8831      1.71    3738549 6.702667e+10  Americas                 Caribbean
## 8832      2.30    1178955 3.702389e+10      Asia              Western Asia
## 8833      1.33   20979708 5.592698e+10    Europe            Eastern Europe
## 8834      1.41  143180249 4.105052e+11    Europe            Eastern Europe
## 8835      5.17    9481083 2.887905e+09    Africa            Eastern Africa
## 8836      2.02     170146 8.496882e+08  Americas                 Caribbean
## 8837      2.13     109049 5.346053e+08  Americas                 Caribbean
## 8838      4.45     182238 3.410113e+08   Oceania                 Polynesia
## 8839      3.05   26083522 2.388336e+11      Asia              Western Asia
## 8840      5.14   11897230 6.334999e+09    Africa            Western Africa
## 8841      1.42    9130353 8.613916e+09    Europe           Southern Europe
## 8842      2.28      90841 7.159537e+08    Africa            Eastern Africa
## 8843      5.23    5391108 1.377335e+09    Africa            Western Africa
## 8844      1.29    4732785 1.433800e+11      Asia        South-Eastern Asia
## 8845      1.29    5391728 4.369061e+10    Europe            Eastern Europe
## 8846      1.40    2017452 2.699827e+10    Europe           Southern Europe
## 8847      4.41     492075 5.426336e+08   Oceania                 Melanesia
## 8848      2.58   49693580 1.787490e+11    Africa           Southern Africa
## 8849      1.40   45209538 7.338206e+11    Europe           Southern Europe
## 8850      2.31   19813816 2.281173e+10      Asia             Southern Asia
## 8851      4.87   33637960 1.966907e+10    Africa           Northern Africa
## 8852      2.44     500953 1.285842e+09  Americas             South America
## 8853      3.76    1134853 1.809107e+09    Africa           Southern Africa
## 8854      1.89    9153316 3.042588e+11    Europe           Northern Europe
## 8855      1.46    7560141 2.864503e+11    Europe            Western Europe
## 8856      3.24   19425597 2.729102e+10      Asia              Western Asia
## 8857      3.67    7099021 1.430153e+09      Asia              Central Asia
## 8858      5.59   41522004 1.637482e+10    Africa            Eastern Africa
## 8859      1.50   66353572 1.737435e+11      Asia        South-Eastern Asia
## 8860      6.59    1021235 3.395794e+08      Asia        South-Eastern Asia
## 8861      4.92    5890414 1.455997e+09    Africa            Western Africa
## 8862      4.06     102169 2.063831e+08   Oceania                 Polynesia
## 8863      1.79    1309260 1.420424e+10  Americas                 Caribbean
## 8864      2.04   10298717 2.987768e+10    Africa           Northern Africa
## 8865      2.17   69515492 3.726192e+11      Asia              Western Asia
## 8866      2.52    4858235 7.823776e+09      Asia              Central Asia
## 8867      6.43   29991958 1.028711e+10    Africa            Eastern Africa
## 8868      1.35   46249196 5.236765e+10    Europe            Eastern Europe
## 8869      2.00    6010100 1.536638e+11      Asia              Western Asia
## 8870      1.84   61151820 1.806907e+12    Europe           Northern Europe
## 8871      2.12  301655953 1.166093e+13  Americas          Northern America
## 8872      2.12    3339750 2.554496e+10  Americas             South America
## 8873      2.47   26586701 2.103838e+10      Asia              Central Asia
## 8874      3.68     219956 3.273824e+08   Oceania                 Melanesia
## 8875      2.56   27670659 1.587866e+11  Americas             South America
## 8876      4.48    3754693           NA      Asia              Western Asia
## 8877      1.88   85770717 5.255039e+10      Asia        South-Eastern Asia
## 8878      5.01   21701105 1.262499e+10      Asia              Western Asia
## 8879      5.91   12738676 4.617450e+09    Africa            Eastern Africa
## 8880      3.90   13297798 4.239316e+09    Africa            Eastern Africa
## 8881      1.76    2968026 5.740575e+09    Europe           Southern Europe
## 8882      2.73   34811059 7.483923e+10    Africa           Northern Africa
## 8883      6.43   19842251 2.466948e+10    Africa             Middle Africa
## 8884      2.16      85350 1.024206e+09  Americas                 Caribbean
## 8885      2.24   40381860 3.945947e+11  Americas             South America
## 8886      1.40    2975029 4.680317e+09      Asia              Western Asia
## 8887      1.73     101342           NA  Americas                 Caribbean
## 8888      1.96   21370348 5.427610e+11   Oceania Australia and New Zealand
## 8889      1.41    8331465 2.275575e+11    Europe            Western Europe
## 8890      1.99    8868713 1.849928e+10      Asia              Western Asia
## 8891      1.89     348587 6.977385e+09  Americas                 Caribbean
## 8892      2.23    1115777 1.315997e+10      Asia              Western Asia
## 8893      2.38  148252473 7.398383e+10      Asia             Southern Asia
## 8894      1.83     277315 2.662290e+09  Americas                 Caribbean
## 8895      1.42    9526453 2.410369e+10    Europe            Eastern Europe
## 8896      1.82   10779155 2.688253e+11    Europe            Western Europe
## 8897      2.91     306165 1.187101e+09  Americas           Central America
## 8898      5.27    8973525 3.121014e+09    Africa            Western Africa
## 8899      2.51     694990 8.383565e+08      Asia             Southern Asia
## 8900      3.48    9599916 1.137350e+10  Americas             South America
## 8901      1.22    3839749 8.388323e+09    Europe           Southern Europe
## 8902      2.86    1967866 8.255373e+09    Africa           Southern Africa
## 8903      1.90  194769696 8.578856e+11  Americas             South America
## 8904      2.10     380786 6.817818e+09      Asia        South-Eastern Asia
## 8905      1.43    7513646 2.028575e+10    Europe            Eastern Europe
## 8906      6.04   14709011 4.191057e+09    Africa            Western Africa
## 8907      6.48    8821795 1.079208e+09    Africa            Eastern Africa
## 8908      3.05   13933660 7.438427e+09      Asia        South-Eastern Asia
## 8909      5.17   19570418 1.328718e+10    Africa             Middle Africa
## 8910      1.68   33363256 8.696872e+11  Americas          Northern America
## 8911      2.57     483824 8.904372e+08    Africa            Western Africa
## 8912      4.81    4280405 1.003390e+09    Africa             Middle Africa
## 8913      6.81   11139740 3.017945e+09    Africa             Middle Africa
## 8914      1.89   16645940 1.048063e+11  Americas             South America
## 8915      1.53 1326690636 2.692514e+12      Asia              Eastern Asia
## 8916      2.43   44901660 1.415939e+11  Americas             South America
## 8917      5.05     665414 2.378403e+08    Africa            Eastern Africa
## 8918      6.45   61809278 6.316453e+09    Africa             Middle Africa
## 8919      5.10    3832771 4.335494e+09    Africa             Middle Africa
## 8920      1.91    4429506 2.349791e+10  Americas           Central America
## 8921      4.91   19261647 1.091624e+10    Africa            Western Africa
## 8922      1.43    4344151 3.014723e+10    Europe           Southern Europe
## 8923      1.50   11290239 4.887332e+10  Americas                 Caribbean
## 8924      1.49    1077010 1.238831e+10      Asia              Western Asia
## 8925      1.43   10397984 8.383222e+10    Europe            Eastern Europe
## 8926      1.89    5495302 1.775544e+11    Europe           Northern Europe
## 8927      3.76     809639 7.436208e+08    Africa            Eastern Africa
## 8928      2.65    9636491 3.605905e+10  Americas                 Caribbean
## 8929      2.73   14447600 2.404452e+10  Americas             South America
## 8930      2.95   78976122 1.455919e+11    Africa           Northern Africa
## 8931      2.32    6004199 1.612054e+10  Americas           Central America
## 8932      5.31     686223 5.697997e+09    Africa             Middle Africa
## 8933      5.16    4500638 7.263377e+08    Africa            Eastern Africa
## 8934      1.62    1339941 9.140619e+09    Europe           Northern Europe
## 8935      5.19   83079608 1.529202e+10    Africa            Eastern Africa
## 8936      2.74     843206 1.936935e+09   Oceania                 Melanesia
## 8937      1.85    5314170 1.529703e+11    Europe           Northern Europe
## 8938      1.97   62309529 1.504107e+12    Europe            Western Europe
## 8939      2.16     262877           NA   Oceania                 Polynesia
## 8940      4.28    1473741 6.035624e+09    Africa             Middle Africa
## 8941      5.80    1586749 1.075629e+09    Africa            Western Africa
## 8942      1.79    4343290 5.475262e+09      Asia              Western Asia
## 8943      1.37   80665906 2.103667e+12    Europe            Western Europe
## 8944      4.19   23115919 7.816531e+09    Africa            Western Africa
## 8945      1.46   11161755 1.645980e+11    Europe           Southern Europe
## 8946      2.25      56788 1.235684e+09  Americas          Northern America
## 8947      2.28     103934 6.144147e+08  Americas                 Caribbean
## 8948      4.12   14106687 2.590763e+10  Americas           Central America
## 8949      5.34   10427356 5.404777e+09    Africa            Western Africa
## 8950      5.25    1561293 2.293236e+08    Africa            Western Africa
## 8951      2.74     748096 8.470071e+08  Americas             South America
## 8952      3.50    9705130 3.799503e+09  Americas                 Caribbean
## 8953      3.27    7259470 1.052091e+10  Americas           Central America
## 8954      1.04    6910384 2.412208e+11      Asia              Eastern Asia
## 8955      1.33   10050699 5.969869e+10    Europe            Eastern Europe
## 8956      2.12     310033 1.204829e+10    Europe           Northern Europe
## 8957      2.64 1197070109 8.208304e+11      Asia             Southern Asia
## 8958      2.48  235360765 2.472704e+11      Asia        South-Eastern Asia
## 8959      1.88   72530693 1.552941e+11      Asia             Southern Asia
## 8960      4.34   29163327 2.244333e+10      Asia              Western Asia
## 8961      2.00    4480145 1.333475e+11    Europe           Northern Europe
## 8962      2.92    7093808 1.603632e+11      Asia              Western Asia
## 8963      1.39   59319234 1.190867e+12    Europe           Southern Europe
## 8964      2.39    2717344 1.012199e+10  Americas                 Caribbean
## 8965      1.34  127317900 5.163458e+12      Asia              Eastern Asia
## 8966      3.59    6010035 1.445326e+10      Asia              Western Asia
## 8967      2.51   15915966 3.730545e+10      Asia              Central Asia
## 8968      4.76   38244442 1.752605e+10    Africa            Eastern Africa
## 8969      3.13      98437 7.517303e+07   Oceania                Micronesia
## 8970      1.23   48509842 7.513598e+11      Asia              Eastern Asia
## 8971      2.68    2705290 6.449388e+10      Asia              Western Asia
## 8972      2.82    5301038 2.000826e+09      Asia              Central Asia
## 8973      3.43    6045439 2.952572e+09      Asia        South-Eastern Asia
## 8974      1.50    2144215 1.372271e+10    Europe           Northern Europe
## 8975      1.57    4109389 2.456431e+10      Asia              Western Asia
## 8976      3.34    1972194 9.907225e+08    Africa           Southern Africa
## 8977      5.19    3672782 8.345464e+08    Africa            Western Africa
## 8978      2.64    6123022 4.836833e+10    Africa           Northern Africa
## 8979      1.42    3219802 2.028775e+10    Europe           Northern Europe
## 8980      1.63     485079 2.727032e+10    Europe            Western Europe
## 8981      0.94     507274 1.433908e+10      Asia              Eastern Asia
## 8982      1.47    2055266 4.536485e+09    Europe           Southern Europe
## 8983      4.79   19926798 5.186794e+09    Africa            Eastern Africa
## 8984      5.78   13904671 2.375261e+09    Africa            Eastern Africa
## 8985      2.05   27197419 1.396535e+11      Asia        South-Eastern Asia
## 8986      2.38     321026 1.212072e+09      Asia             Southern Asia
## 8987      6.82   14223403 3.798680e+09    Africa            Western Africa
## 8988      1.38     406392 4.602421e+09    Europe           Southern Europe
## 8989      4.94    3414552 2.028436e+09    Africa            Western Africa
## 8990      1.58    1238013 6.185514e+09    Africa            Eastern Africa
## 8991      2.35  114972821 6.999395e+11  Americas           Central America
## 8992      3.59     104472 2.294910e+08   Oceania                Micronesia
## 8993      1.49    4111168 2.111088e+09    Europe            Eastern Europe
## 8994      2.37    2629666 2.028460e+09      Asia              Eastern Asia
## 8995      1.72     619740 1.453085e+09    Europe           Southern Europe
## 8996      2.44   31350544 5.515823e+10    Africa           Northern Africa
## 8997      5.54   22994867 7.900511e+09    Africa            Eastern Africa
## 8998      3.36    2115703 5.799459e+09    Africa           Southern Africa
## 8999      2.90   26325183 7.362029e+09      Asia             Southern Asia
## 9000      1.77   16519862 4.497619e+11    Europe            Western Europe
## 9001      2.22     239392           NA   Oceania                 Melanesia
## 9002      2.12    4285380 6.408124e+10   Oceania Australia and New Zealand
## 9003      2.72    5594524 5.099835e+09  Americas           Central America
## 9004      7.59   15085130 2.598561e+09    Africa            Western Africa
## 9005      6.02  151115683 7.417920e+10    Africa            Western Africa
## 9006      1.96    4771633 1.974026e+11    Europe           Northern Europe
## 9007      2.89    2652281 3.002351e+10      Asia              Western Asia
## 9008      3.58  163096985 1.075695e+11      Asia             Southern Asia
## 9009      2.61    3498679 1.922586e+10  Americas           Central America
## 9010      4.07    6540267 4.479545e+09   Oceania                 Melanesia
## 9011      3.06    6047131 9.458533e+09  Americas             South America
## 9012      2.58   28642048 8.430237e+10  Americas             South America
## 9013      3.26   90297115 1.185079e+11      Asia        South-Eastern Asia
## 9014      1.33   38525752 2.377429e+11    Europe            Eastern Europe
## 9015      1.36   10577458 1.269285e+11    Europe           Southern Europe
## 9016      1.69    3728126 6.576898e+10  Americas                 Caribbean
## 9017      2.20    1388962 4.357711e+10      Asia              Western Asia
## 9018      1.34   20741669 6.119855e+10    Europe            Eastern Europe
## 9019      1.49  143123163 4.320483e+11    Europe            Eastern Europe
## 9020      5.06    9750314 3.211351e+09    Africa            Eastern Africa
## 9021      2.01     172729 8.955726e+08  Americas                 Caribbean
## 9022      2.11     109165 5.314221e+08  Americas                 Caribbean
## 9023      4.43     183440 3.284069e+08   Oceania                 Polynesia
## 9024      2.97   26742842 2.489331e+11      Asia              Western Asia
## 9025      5.11   12229703 6.569660e+09    Africa            Western Africa
## 9026      1.41    9109535 8.941244e+09    Europe           Southern Europe
## 9027      2.28      91634 7.088404e+08    Africa            Eastern Africa
## 9028      5.13    5521838 1.453558e+09    Africa            Western Africa
## 9029      1.28    4849641 1.458189e+11      Asia        South-Eastern Asia
## 9030      1.31    5396710 4.620303e+10    Europe            Eastern Europe
## 9031      1.43    2030599 2.796731e+10    Europe           Southern Europe
## 9032      4.36     503410 5.822458e+08   Oceania                 Melanesia
## 9033      2.54   50348811 1.852172e+11    Africa           Southern Africa
## 9034      1.42   45817016 7.403418e+11    Europe           Southern Europe
## 9035      2.32   19949553 2.416904e+10      Asia             Southern Asia
## 9036      4.79   34470138 2.101397e+10    Africa           Northern Africa
## 9037      2.41     506657 1.339120e+09  Americas             South America
## 9038      3.70    1153750 1.851758e+09    Africa           Southern Africa
## 9039      1.92    9226333 3.023924e+11    Europe           Northern Europe
## 9040      1.47    7646542 2.924528e+11    Europe            Western Europe
## 9041      3.17   20097057 2.851911e+10      Asia              Western Asia
## 9042      3.70    7254072 1.733998e+09      Asia              Central Asia
## 9043      5.54   42844744 1.759259e+10    Africa            Eastern Africa
## 9044      1.48   66453255 1.780598e+11      Asia        South-Eastern Asia
## 9045      6.48    1030915 3.892753e+08      Asia        South-Eastern Asia
## 9046      4.88    6052937 1.490639e+09    Africa            Western Africa
## 9047      4.01     102816 2.119288e+08   Oceania                 Polynesia
## 9048      1.80    1315372 1.458775e+10  Americas                 Caribbean
## 9049      2.04   10408091 3.122838e+10    Africa           Northern Africa
## 9050      2.15   70344357 3.750742e+11      Asia              Western Asia
## 9051      2.48    4917541 8.973871e+09      Asia              Central Asia
## 9052      6.34   31014427 1.118300e+10    Africa            Eastern Africa
## 9053      1.38   46028476 5.357211e+10    Europe            Eastern Europe
## 9054      1.95    6900142 1.587265e+11      Asia              Western Asia
## 9055      1.87   61689620 1.786979e+12    Europe           Northern Europe
## 9056      2.07  304473143 1.161905e+13  Americas          Northern America
## 9057      2.11    3350832 2.737811e+10  Americas             South America
## 9058      2.46   26952719 2.293184e+10      Asia              Central Asia
## 9059      3.61     225335 3.475923e+08   Oceania                 Melanesia
## 9060      2.53   28116716 1.671671e+11  Americas             South America
## 9061      4.38    3854667           NA      Asia              Western Asia
## 9062      1.86   86589342 5.586668e+10      Asia        South-Eastern Asia
## 9063      4.83   22322699 1.308549e+10      Asia              Western Asia
## 9064      5.88   13114579 4.879796e+09    Africa            Eastern Africa
## 9065      3.85   13495462 3.490273e+09    Africa            Eastern Africa
## 9066      1.74    2929886 5.930013e+09    Europe           Southern Europe
## 9067      2.78   35401790 7.663537e+10    Africa           Northern Africa
## 9068      6.33   20520103 2.526473e+10    Africa             Middle Africa
## 9069      2.15      86300 9.182453e+08  Americas                 Caribbean
## 9070      2.23   40798641 3.979497e+11  Americas             South America
## 9071      1.60    2966108 4.018052e+09      Asia              Western Asia
## 9072      1.71     101416           NA  Americas                 Caribbean
## 9073      1.90   21770690 5.506222e+11   Oceania Australia and New Zealand
## 9074      1.39    8361362 2.188876e+11    Europe            Western Europe
## 9075      1.98    8980488 2.021971e+10      Asia              Western Asia
## 9076      1.90     354780 6.638287e+09  Americas                 Caribbean
## 9077      2.18    1196774 1.356793e+10      Asia              Western Asia
## 9078      2.32  149905836 7.823136e+10      Asia             Southern Asia
## 9079      1.84     278466 2.521188e+09  Americas                 Caribbean
## 9080      1.44    9505319 2.414311e+10    Europe            Eastern Europe
## 9081      1.83   10854388 2.612959e+11    Europe            Western Europe
## 9082      2.85     313925 1.187101e+09  Americas           Central America
## 9083      5.18    9240982 3.239613e+09    Africa            Western Africa
## 9084      2.44     707830 8.947643e+08      Asia             Southern Asia
## 9085      3.41    9758799 1.175530e+10  Americas             South America
## 9086      1.23    3837732 8.144223e+09    Europe           Southern Europe
## 9087      2.81    2007212 7.857039e+09    Africa           Southern Africa
## 9088      1.86  196701298 8.550696e+11  Americas             South America
## 9089      2.07     387080 6.697458e+09      Asia        South-Eastern Asia
## 9090      1.46    7460057 1.917003e+10    Europe            Eastern Europe
## 9091      5.95   15165856 4.315340e+09    Africa            Western Africa
## 9092      6.39    9137786 1.116639e+09    Africa            Eastern Africa
## 9093      3.01   14144337 7.444876e+09      Asia        South-Eastern Asia
## 9094      5.09   20074522 1.355292e+10    Africa             Middle Africa
## 9095      1.67   33746559 8.455989e+11  Americas          Northern America
## 9096      2.49     486673 9.234959e+08    Africa            Western Africa
## 9097      4.72    4361492 1.020447e+09    Africa             Middle Africa
## 9098      6.70   11510535 2.981729e+09    Africa             Middle Africa
## 9099      1.87   16829957 1.037200e+11  Americas             South America
## 9100      1.54 1333807063 2.940225e+12      Asia              Eastern Asia
## 9101      2.41   45416276 1.439324e+11  Americas             South America
## 9102      4.99     681845 2.421460e+08    Africa            Eastern Africa
## 9103      6.35   63845097 6.495486e+09    Africa             Middle Africa
## 9104      5.09    3950786 4.659307e+09    Africa             Middle Africa
## 9105      1.87    4488261 2.326138e+10  Americas           Central America
## 9106      4.91   19684909 1.133106e+10    Africa            Western Africa
## 9107      1.45    4330399 2.834109e+10    Europe           Southern Europe
## 9108      1.48   11297442 4.958155e+10  Americas                 Caribbean
## 9109      1.49    1090486 1.218190e+10      Asia              Western Asia
## 9110      1.47   10460022 7.989612e+10    Europe            Eastern Europe
## 9111      1.84    5523755 1.671963e+11    Europe           Northern Europe
## 9112      3.68     820097 7.807982e+08    Africa            Eastern Africa
## 9113      2.62    9767737 3.730455e+10  Americas                 Caribbean
## 9114      2.69   14691310 2.413153e+10  Americas             South America
## 9115      2.92   80442443 1.524146e+11    Africa           Northern Africa
## 9116      2.29    6021368 1.561548e+10  Americas           Central America
## 9117      5.23     707155 6.024744e+09    Africa             Middle Africa
## 9118      5.06    4593549 7.544935e+08    Africa            Eastern Africa
## 9119      1.63    1336013 7.837361e+09    Europe           Northern Europe
## 9120      5.04   85302099 1.663810e+10    Africa            Eastern Africa
## 9121      2.70     851854 1.912290e+09   Oceania                 Melanesia
## 9122      1.86    5340485 1.401907e+11    Europe           Northern Europe
## 9123      1.98   62640901 1.456772e+12    Europe            Western Europe
## 9124      2.13     265412           NA   Oceania                 Polynesia
## 9125      4.25    1507428 5.950756e+09    Africa             Middle Africa
## 9126      5.80    1638899 1.147182e+09    Africa            Western Africa
## 9127      1.81    4298591 5.268528e+09      Asia              Western Asia
## 9128      1.38   80519685 1.995811e+12    Europe            Western Europe
## 9129      4.12   23713164 8.128525e+09    Africa            Western Africa
## 9130      1.48   11179425 1.592476e+11    Europe           Southern Europe
## 9131      2.36      56663 1.168809e+09  Americas          Northern America
## 9132      2.26     104298 5.795183e+08  Americas                 Caribbean
## 9133      4.04   14418033 2.604392e+10  Americas           Central America
## 9134      5.26   10715770 5.389635e+09    Africa            Western Africa
## 9135      5.18    1596832 2.361936e+08    Africa            Western Africa
## 9136      2.72     750749 8.751161e+08  Americas             South America
## 9137      3.42    9852953 3.908841e+09  Americas                 Caribbean
## 9138      3.21    7383098 1.029677e+10  Americas           Central America
## 9139      1.06    6949275 2.348030e+11      Asia              Eastern Asia
## 9140      1.35   10034951 5.564000e+10    Europe            Eastern Europe
## 9141      2.12     314336 1.122815e+10    Europe           Northern Europe
## 9142      2.60 1214182182 8.884523e+11      Asia             Southern Asia
## 9143      2.46  238465165 2.587163e+11      Asia        South-Eastern Asia
## 9144      1.89   73370982 1.580893e+11      Asia             Southern Asia
## 9145      4.28   29970634 2.338595e+10      Asia              Western Asia
## 9146      2.00    4558603 1.240205e+11    Europe           Northern Europe
## 9147      2.92    7262964 1.617055e+11      Asia              Western Asia
## 9148      1.42   59467196 1.125436e+12    Europe           Southern Europe
## 9149      2.36    2729575 9.858817e+09  Americas                 Caribbean
## 9150      1.36  127340884 4.878075e+12      Asia              Eastern Asia
## 9151      3.53    6266865 1.524580e+10      Asia              Western Asia
## 9152      2.54   16098356 3.775312e+10      Asia              Central Asia
## 9153      4.69   39269988 1.798958e+10    Africa            Eastern Africa
## 9154      3.09     100566 7.468196e+07   Oceania                Micronesia
## 9155      1.25   48807036 7.537604e+11      Asia              Eastern Asia
## 9156      2.68    2881243 6.117245e+10      Asia              Western Asia
## 9157      2.90    5380310 2.058576e+09      Asia              Central Asia
## 9158      3.37    6153153 3.174068e+09      Asia        South-Eastern Asia
## 9159      1.53    2117307 1.125879e+10    Europe           Northern Europe
## 9160      1.54    4181742 2.665227e+10      Asia              Western Asia
## 9161      3.27    1990413 1.019082e+09    Africa           Southern Africa
## 9162      5.11    3821498 9.435584e+08    Africa            Western Africa
## 9163      2.58    6208680 4.938406e+10    Africa           Northern Africa
## 9164      1.45    3172436 1.729698e+10    Europe           Northern Europe
## 9165      1.63     496257 2.582529e+10    Europe            Western Europe
## 9166      0.97     521405 1.458639e+10      Asia              Eastern Asia
## 9167      1.46    2058920 4.494737e+09    Europe           Southern Europe
## 9168      4.72   20495706 4.949331e+09    Africa            Eastern Africa
## 9169      5.71   14329056 2.589842e+09    Africa            Eastern Africa
## 9170      2.02   27661017 1.373687e+11      Asia        South-Eastern Asia
## 9171      2.36     326713 1.154630e+09      Asia             Southern Asia
## 9172      6.83   14694565 3.969621e+09    Africa            Western Africa
## 9173      1.38     409475 4.480338e+09    Europe           Southern Europe
## 9174      4.89    3501927 2.003685e+09    Africa            Western Africa
## 9175      1.54    1242954 6.373107e+09    Africa            Eastern Africa
## 9176      2.31  116815612 6.562591e+11  Americas           Central America
## 9177      3.52     103961 2.310262e+08   Oceania                Micronesia
## 9178      1.48    4095813 1.984643e+09    Europe            Eastern Europe
## 9179      2.41    2669572 2.002727e+09      Asia              Eastern Asia
## 9180      1.71     620870 1.370259e+09    Europe           Southern Europe
## 9181      2.51   31714958 5.778285e+10    Africa           Northern Africa
## 9182      5.48   23647815 8.401035e+09    Africa            Eastern Africa
## 9183      3.30    2152357 5.774346e+09    Africa           Southern Africa
## 9184      2.76   26592666 7.695759e+09      Asia             Southern Asia
## 9185      1.79   16575173 4.338552e+11    Europe            Western Europe
## 9186      2.21     242891           NA   Oceania                 Melanesia
## 9187      2.13    4329124 6.377960e+10   Oceania Australia and New Zealand
## 9188      2.68    5666595 5.024905e+09  Americas           Central America
## 9189      7.59   15672194 2.575174e+09    Africa            Western Africa
## 9190      6.02  155207145 7.937174e+10    Africa            Western Africa
## 9191      1.98    4830371 1.941116e+11    Europe           Northern Europe
## 9192      2.89    2762073 3.035377e+10      Asia              Western Asia
## 9193      3.51  166520983 1.114370e+11      Asia             Southern Asia
## 9194      2.58    3559401 1.984025e+10  Americas           Central America
## 9195      4.01    6693799 4.725920e+09   Oceania                 Melanesia
## 9196      3.01    6127847 9.094701e+09  Americas             South America
## 9197      2.55   29001563 8.500641e+10  Americas             South America
## 9198      3.20   91641881 1.198687e+11      Asia        South-Eastern Asia
## 9199      1.35   38551489 2.416126e+11    Europe            Eastern Europe
## 9200      1.34   10590260 1.232370e+11    Europe           Southern Europe
## 9201      1.68    3718473 6.427266e+10  Americas                 Caribbean
## 9202      2.13    1591151 4.880637e+10      Asia              Western Asia
## 9203      1.36   20510263 5.599667e+10    Europe            Eastern Europe
## 9204      1.54  143126660 3.982098e+11    Europe            Eastern Europe
## 9205      4.95   10024594 3.343016e+09    Africa            Eastern Africa
## 9206      2.00     175196 7.439625e+08  Americas                 Caribbean
## 9207      2.09     109255 5.192111e+08  Americas                 Caribbean
## 9208      4.39     184700 3.227468e+08   Oceania                 Polynesia
## 9209      2.90   27409491 2.491734e+11      Asia              Western Asia
## 9210      5.08   12581624 6.707036e+09    Africa            Western Africa
## 9211      1.39    9087019 8.628301e+09    Europe           Southern Europe
## 9212      2.27      92360 7.125434e+08    Africa            Eastern Africa
## 9213      5.03    5647194 1.500072e+09    Africa            Western Africa
## 9214      1.26    4965105 1.443903e+11      Asia        South-Eastern Asia
## 9215      1.33    5401951 4.392449e+10    Europe            Eastern Europe
## 9216      1.46    2042804 2.572773e+10    Europe           Southern Europe
## 9217      4.30     514767 5.752589e+08   Oceania                 Melanesia
## 9218      2.50   50992034 1.823698e+11    Africa           Southern Africa
## 9219      1.44   46295191 7.126474e+11    Europe           Southern Europe
## 9220      2.34   20078873 2.502437e+10      Asia             Southern Asia
## 9221      4.71   35297298 2.184677e+10    Africa           Northern Africa
## 9222      2.37     512522 1.379477e+09  Americas             South America
## 9223      3.63    1173529 1.874121e+09    Africa           Southern Africa
## 9224      1.94    9303432 2.871889e+11    Europe           Northern Europe
## 9225      1.49    7737316 2.869605e+11    Europe            Western Europe
## 9226      3.12   20566871 3.023026e+10      Asia              Western Asia
## 9227      3.74    7414960 1.801624e+09      Asia              Central Asia
## 9228      5.49   44222113 1.865201e+10    Africa            Eastern Africa
## 9229      1.46   66548197 1.739113e+11      Asia        South-Eastern Asia
## 9230      6.36    1041827 4.389712e+08      Asia        South-Eastern Asia
## 9231      4.84    6219761 1.538733e+09    Africa            Western Africa
## 9232      3.96     103416 2.116436e+08   Oceania                 Polynesia
## 9233      1.80    1321624 1.410636e+10  Americas                 Caribbean
## 9234      2.05   10522214 3.219559e+10    Africa           Northern Africa
## 9235      2.12   71261307 3.569736e+11      Asia              Western Asia
## 9236      2.45    4978960 9.521277e+09      Asia              Central Asia
## 9237      6.25   32067125 1.199348e+10    Africa            Eastern Africa
## 9238      1.41   45830711 4.564344e+10    Europe            Eastern Europe
## 9239      1.90    7705423 1.561719e+11      Asia              Western Asia
## 9240      1.89   62221164 1.708829e+12    Europe           Northern Europe
## 9241      2.00  307231961 1.120919e+13  Americas          Northern America
## 9242      2.09    3362761 2.804004e+10  Americas             South America
## 9243      2.44   27338109 2.478932e+10      Asia              Central Asia
## 9244      3.55     230782 3.595888e+08   Oceania                 Melanesia
## 9245      2.50   28558607 1.618139e+11  Americas             South America
## 9246      4.30    3959988           NA      Asia              Western Asia
## 9247      1.84   87449021 5.884079e+10      Asia        South-Eastern Asia
## 9248      4.66   22954226 1.359143e+10      Asia              Western Asia
## 9249      5.85   13507849 5.192251e+09    Africa            Eastern Africa
## 9250      3.79   13720997 3.699145e+09    Africa            Eastern Africa
## 9251      1.74    2901883 6.137564e+09    Europe           Southern Europe
## 9252      2.82   36036159 7.916434e+10    Africa           Northern Africa
## 9253      6.22   21219954 2.612566e+10    Africa             Middle Africa
## 9254      2.13      87233 8.366868e+08  Americas                 Caribbean
## 9255      2.22   41222875 4.344055e+11  Americas             South America
## 9256      1.55    2963496 4.102286e+09      Asia              Western Asia
## 9257      1.70     101597           NA  Americas                 Caribbean
## 9258      1.89   22162863 5.630494e+11   Oceania Australia and New Zealand
## 9259      1.44    8391986 2.239541e+11    Europe            Western Europe
## 9260      1.97    9099893 2.123070e+10      Asia              Western Asia
## 9261      1.90     360830 6.650152e+09  Americas                 Caribbean
## 9262      2.14    1261319 1.417849e+10      Asia              Western Asia
## 9263      2.28  151616777 8.297949e+10      Asia             Southern Asia
## 9264      1.84     279566           NA  Americas                 Caribbean
## 9265      1.46    9492122 2.600213e+10    Europe            Eastern Europe
## 9266      1.84   10929978 2.671431e+11    Europe            Western Europe
## 9267      2.80     321609 1.221526e+09  Americas           Central America
## 9268      5.10    9509798 3.336801e+09    Africa            Western Africa
## 9269      2.38     720246 9.613655e+08      Asia             Southern Asia
## 9270      3.36    9918245 1.224041e+10  Americas             South America
## 9271      1.24    3835258 8.209377e+09    Europe           Southern Europe
## 9272      2.76    2047831 8.408167e+09    Africa           Southern Africa
## 9273      1.84  198614208 9.194873e+11  Americas             South America
## 9274      2.05     393302 6.871523e+09      Asia        South-Eastern Asia
## 9275      1.49    7407297 1.924671e+10    Europe            Eastern Europe
## 9276      5.87   15632066 4.655655e+09    Africa            Western Africa
## 9277      6.30    9461117 1.158914e+09    Africa            Eastern Africa
## 9278      2.97   14363586 7.888820e+09      Asia        South-Eastern Asia
## 9279      5.02   20590666 1.398662e+10    Africa             Middle Africa
## 9280      1.63   34126173 8.727845e+11  Americas          Northern America
## 9281      2.43     490379 9.716067e+08    Africa            Western Africa
## 9282      4.63    4444973 1.054122e+09    Africa             Middle Africa
## 9283      6.60   11896380 3.369354e+09    Africa             Middle Africa
## 9284      1.86   17015048 1.100420e+11  Americas             South America
## 9285      1.54 1340968737 3.246008e+12      Asia              Eastern Asia
## 9286      2.38   45918101 1.496914e+11  Americas             South America
## 9287      4.92     698695 2.472310e+08    Africa            Eastern Africa
## 9288      6.25   65938712 6.961485e+09    Africa             Middle Africa
## 9289      5.07    4066078 5.067060e+09    Africa             Middle Africa
## 9290      1.85    4545273 2.434998e+10  Americas           Central America
## 9291      4.91   20131707 1.160300e+10    Africa            Western Africa
## 9292      1.47    4316425 2.800347e+10    Europe           Southern Europe
## 9293      1.47   11308133 5.060523e+10  Americas                 Caribbean
## 9294      1.48    1103685 1.232078e+10      Asia              Western Asia
## 9295      1.50   10506617 8.208448e+10    Europe            Eastern Europe
## 9296      1.88    5550959 1.693625e+11    Europe           Northern Europe
## 9297      3.60     830802           NA    Africa            Eastern Africa
## 9298      2.58    9897983 4.019611e+10  Americas                 Caribbean
## 9299      2.66   14934692 2.499582e+10  Americas             South America
## 9300      2.88   82040994 1.602587e+11    Africa           Northern Africa
## 9301      2.26    6038306 1.582859e+10  Americas           Central America
## 9302      5.14     728710 5.979286e+09    Africa             Middle Africa
## 9303      4.97    4689664 7.711169e+08    Africa            Eastern Africa
## 9304      1.63    1332089 8.014762e+09    Europe           Northern Europe
## 9305      4.90   87561814 1.829149e+10    Africa            Eastern Africa
## 9306      2.67     859952 1.908465e+09   Oceania                 Melanesia
## 9307      1.87    5367693 1.454220e+11    Europe           Northern Europe
## 9308      1.98   62961136 1.481000e+12    Europe            Western Europe
## 9309      2.11     268065           NA   Oceania                 Polynesia
## 9310      4.21    1541936 6.343810e+09    Africa             Middle Africa
## 9311      5.80    1693002 1.217357e+09    Africa            Western Africa
## 9312      1.82    4250132 5.597971e+09      Asia              Western Asia
## 9313      1.39   80435307 2.069464e+12    Europe            Western Europe
## 9314      4.05   24317734 8.779397e+09    Africa            Western Africa
## 9315      1.50   11177509 1.536473e+11    Europe           Southern Europe
## 9316      2.20      56546           NA  Americas          Northern America
## 9317      2.24     104677 5.721683e+08  Americas                 Caribbean
## 9318      3.97   14732261 2.680179e+10  Americas           Central America
## 9319      5.17   11012406 5.493990e+09    Africa            Western Africa
## 9320      5.12    1634196 2.443955e+08    Africa            Western Africa
## 9321      2.68     753362 9.133663e+08  Americas             South America
## 9322      3.35    9999617 3.697138e+09  Americas                 Caribbean
## 9323      3.15    7503875 1.058233e+10  Americas           Central America
## 9324      1.08    6993570 2.511690e+11      Asia              Eastern Asia
## 9325      1.36   10014633 5.634004e+10    Europe            Eastern Europe
## 9326      2.12     318042 1.077635e+10    Europe           Northern Europe
## 9327      2.56 1230984504 9.733250e+11      Asia             Southern Asia
## 9328      2.43  241613126 2.747447e+11      Asia        South-Eastern Asia
## 9329      1.90   74253373           NA      Asia             Southern Asia
## 9330      4.21   30868156 2.358340e+10      Asia              Western Asia
## 9331      2.00    4617334 1.234880e+11    Europe           Northern Europe
## 9332      2.92    7420368 1.695416e+11      Asia              Western Asia
## 9333      1.44   59588007 1.145744e+12    Europe           Southern Europe
## 9334      2.33    2741253 9.799664e+09  Americas                 Caribbean
## 9335      1.37  127319802 5.094423e+12      Asia              Eastern Asia
## 9336      3.46    6517912 1.559753e+10      Asia              Western Asia
## 9337      2.54   16310624 4.050910e+10      Asia              Central Asia
## 9338      4.62   40328313 1.898828e+10    Africa            Eastern Africa
## 9339      3.05     102648 7.602624e+07   Oceania                Micronesia
## 9340      1.27   49090041 8.014000e+11      Asia              Eastern Asia
## 9341      2.67    3059473 6.325843e+10      Asia              Western Asia
## 9342      2.97    5464567 2.030624e+09      Asia              Central Asia
## 9343      3.29    6260544 3.444717e+09      Asia        South-Eastern Asia
## 9344      1.55    2090519 1.122012e+10    Europe           Northern Europe
## 9345      1.51    4337156 2.851793e+10      Asia              Western Asia
## 9346      3.21    2010586 1.076239e+09    Africa           Southern Africa
## 9347      5.02    3957990 1.040653e+09    Africa            Western Africa
## 9348      2.53    6265697           NA    Africa           Northern Africa
## 9349      1.47    3122835 1.752707e+10    Europe           Northern Europe
## 9350      1.64     507889 2.651690e+10    Europe            Western Europe
## 9351      1.00     534626 1.852995e+10      Asia              Eastern Asia
## 9352      1.45    2062443 4.574540e+09    Europe           Southern Europe
## 9353      4.65   21079532 5.026822e+09    Africa            Eastern Africa
## 9354      5.64   14769824 2.758393e+09    Africa            Eastern Africa
## 9355      2.00   28119500 1.472509e+11      Asia        South-Eastern Asia
## 9356      2.34     332575 1.220714e+09      Asia             Southern Asia
## 9357      6.84   15167286 4.199859e+09    Africa            Western Africa
## 9358      1.37     412064 4.601834e+09    Europe           Southern Europe
## 9359      4.84    3591400 2.107594e+09    Africa            Western Africa
## 9360      1.52    1247951 6.636426e+09    Africa            Eastern Africa
## 9361      2.28  118617542 6.924793e+11  Americas           Central America
## 9362      3.46     103619 2.382458e+08   Oceania                Micronesia
## 9363      1.48    4084483 2.125552e+09    Europe            Eastern Europe
## 9364      2.44    2712657 2.130204e+09      Asia              Eastern Asia
## 9365      1.70     621952 1.404516e+09    Europe           Southern Europe
## 9366      2.58   32107739 5.990805e+10    Africa           Northern Africa
## 9367      5.41   24321457 8.972306e+09    Africa            Eastern Africa
## 9368      3.23    2193643 6.155469e+09    Africa           Southern Africa
## 9369      2.62   26875910 8.066415e+09      Asia             Southern Asia
## 9370      1.80   16631571 4.411854e+11    Europe            Western Europe
## 9371      2.19     246345           NA   Oceania                 Melanesia
## 9372      2.12    4369027 6.499141e+10   Oceania Australia and New Zealand
## 9373      2.63    5737722 5.250044e+09  Americas           Central America
## 9374      7.58   16291990 2.781188e+09    Africa            Western Africa
## 9375      6.02  159424742 8.558174e+10    Africa            Western Africa
## 9376      1.95    4891251 1.954248e+11    Europe           Northern Europe
## 9377      2.90    2943747 3.156792e+10      Asia              Western Asia
## 9378      3.43  170043918 1.160552e+11      Asia             Southern Asia
## 9379      2.55    3620506 2.148631e+10  Americas           Central America
## 9380      3.95    6847517 5.103994e+09   Oceania                 Melanesia
## 9381      2.97    6209877 1.046308e+10  Americas             South America
## 9382      2.51   29373644 9.250687e+10  Americas             South America
## 9383      3.15   93038902 1.290174e+11      Asia        South-Eastern Asia
## 9384      1.37   38574682 2.510308e+11    Europe            Eastern Europe
## 9385      1.33   10584837 1.249639e+11    Europe           Southern Europe
## 9386      1.66    3709671 6.294036e+10  Americas                 Caribbean
## 9387      2.09    1765513 5.690822e+10      Asia              Western Asia
## 9388      1.37   20298838 5.652746e+10    Europe            Eastern Europe
## 9389      1.57  143158099 4.153328e+11    Europe            Eastern Europe
## 9390      4.84   10293669 3.583713e+09    Africa            Eastern Africa
## 9391      1.98     177397 7.766812e+08  Americas                 Caribbean
## 9392      2.07     109316 5.096823e+08  Americas                 Caribbean
## 9393      4.34     186029 3.282691e+08   Oceania                 Polynesia
## 9394      2.83   28090647 2.607398e+11      Asia              Western Asia
## 9395      5.05   12956791 6.984285e+09    Africa            Western Africa
## 9396      1.38    9059046 8.710615e+09    Europe           Southern Europe
## 9397      2.26      93081 7.603615e+08    Africa            Eastern Africa
## 9398      4.94    5775902 1.574303e+09    Africa            Western Africa
## 9399      1.26    5078961 1.657070e+11      Asia        South-Eastern Asia
## 9400      1.35    5406896 4.576181e+10    Europe            Eastern Europe
## 9401      1.48    2052480 2.608265e+10    Europe           Southern Europe
## 9402      4.24     526177 6.155270e+08   Oceania                 Melanesia
## 9403      2.47   51621594 1.876396e+11    Africa           Southern Africa
## 9404      1.46   46601492 7.121523e+11    Europe           Southern Europe
## 9405      2.34   20201312 2.703032e+10      Asia             Southern Asia
## 9406      4.64   36114885 2.281908e+10    Africa           Northern Africa
## 9407      2.35     518141 1.436104e+09  Americas             South America
## 9408      3.56    1193148 1.911603e+09    Africa           Southern Africa
## 9409      1.99    9382297 3.048587e+11    Europe           Northern Europe
## 9410      1.50    7830534 2.947487e+11    Europe            Western Europe
## 9411      3.08   20720602 3.119763e+10      Asia              Western Asia
## 9412      3.78    7581696 1.918729e+09      Asia              Central Asia
## 9413      5.43   45648525 1.996568e+10    Africa            Eastern Africa
## 9414      1.44   66692024 1.874946e+11      Asia        South-Eastern Asia
## 9415      6.24    1057122 4.805401e+08      Asia        South-Eastern Asia
## 9416      4.79    6390851 1.595793e+09    Africa            Western Africa
## 9417      3.91     103947 2.106294e+08   Oceania                 Polynesia
## 9418      1.80    1328095 1.410353e+10  Americas                 Caribbean
## 9419      2.04   10639194 3.316145e+10    Africa           Northern Africa
## 9420      2.10   72310416 3.896615e+11      Asia              Western Asia
## 9421      2.41    5041995 1.039724e+10      Asia              Central Asia
## 9422      6.16   33149417 1.270110e+10    Africa            Eastern Africa
## 9423      1.44   45647497 4.751482e+10    Europe            Eastern Europe
## 9424      1.87    8329453 1.584085e+11      Asia              Western Asia
## 9425      1.90   62716684 1.744580e+12    Europe           Northern Europe
## 9426      1.93  309876170 1.154791e+13  Americas          Northern America
## 9427      2.08    3374414 3.053415e+10  Americas             South America
## 9428      2.41   27739764 2.689641e+10      Asia              Central Asia
## 9429      3.50     236299 3.705495e+08   Oceania                 Melanesia
## 9430      2.47   28995745 1.594048e+11  Americas             South America
## 9431      4.22    4068780           NA      Asia              Western Asia
## 9432      1.82   88357775 6.283222e+10      Asia        South-Eastern Asia
## 9433      4.50   23591972 1.463827e+10      Asia              Western Asia
## 9434      5.81   13917439 5.587390e+09    Africa            Eastern Africa
## 9435      3.72   13973897 4.032423e+09    Africa            Eastern Africa
## 9436      1.75    2886010 6.321691e+09    Europe           Southern Europe
## 9437      2.83   36717132 8.114345e+10    Africa           Northern Africa
## 9438      6.10   21942296 2.701394e+10    Africa             Middle Africa
## 9439      2.12      88152 8.017879e+08  Americas                 Caribbean
## 9440      2.20   41655616 4.729353e+11  Americas             South America
## 9441      1.50    2967984 4.290991e+09      Asia              Western Asia
## 9442      1.69     101936           NA  Americas                 Caribbean
## 9443      1.88   22542371 5.734540e+11   Oceania Australia and New Zealand
## 9444      1.44    8423559 2.309133e+11    Europe            Western Europe
## 9445      1.96    9227512 2.144300e+10      Asia              Western Asia
## 9446      1.90     366711 6.758472e+09  Americas                 Caribbean
## 9447      2.12    1306014           NA      Asia              Western Asia
## 9448      2.24  153405612 8.850782e+10      Asia             Southern Asia
## 9449      1.84     280602           NA  Americas                 Caribbean
## 9450      1.47    9487674 2.738024e+10    Europe            Eastern Europe
## 9451      1.85   11005175 2.722711e+11    Europe            Western Europe
## 9452      2.76     329193 1.245957e+09  Americas           Central America
## 9453      5.01    9779391 3.440242e+09    Africa            Western Africa
## 9454      2.32     732246 1.042216e+09      Asia             Southern Asia
## 9455      3.31   10078238 1.286334e+10  Americas             South America
## 9456      1.26    3832310 8.349796e+09    Europe           Southern Europe
## 9457      2.71    2089706 8.833027e+09    Africa           Southern Africa
## 9458      1.82  200517584 9.446123e+11  Americas             South America
## 9459      2.03     399443           NA      Asia        South-Eastern Asia
## 9460      1.51    7355231 1.957391e+10    Europe            Eastern Europe
## 9461      5.78   16106851 4.849461e+09    Africa            Western Africa
## 9462      6.21    9790151 1.207491e+09    Africa            Eastern Africa
## 9463      2.93   14593099 8.435595e+09      Asia        South-Eastern Asia
## 9464      4.94   21119065 1.451811e+10    Africa             Middle Africa
## 9465      1.61   34499905 8.942519e+11  Americas          Northern America
## 9466      2.38     495159 1.020633e+09    Africa            Western Africa
## 9467      4.54    4530903 1.086800e+09    Africa             Middle Africa
## 9468      6.49   12298512 3.473804e+09    Africa             Middle Africa
## 9469      1.84   17201305 1.166315e+11  Americas             South America
## 9470      1.54 1348174478 3.547887e+12      Asia              Eastern Asia
## 9471      2.35   46406446 1.585663e+11  Americas             South America
## 9472      4.85     715972 2.527374e+08    Africa            Eastern Africa
## 9473      6.15   68087376 7.440412e+09    Africa             Middle Africa
## 9474      5.05    4177435 5.293030e+09    Africa             Middle Africa
## 9475      1.83    4600487 2.536390e+10  Americas           Central America
## 9476      4.91   20604172 1.105766e+10    Africa            Western Africa
## 9477      1.48    4302073 2.799242e+10    Europe           Southern Europe
## 9478      1.46   11323570           NA  Americas                 Caribbean
## 9479      1.47    1116644 1.237942e+10      Asia              Western Asia
## 9480      1.53   10533985 8.344289e+10    Europe            Eastern Europe
## 9481      1.76    5576577 1.710519e+11    Europe           Northern Europe
## 9482      3.53     841802           NA    Africa            Eastern Africa
## 9483      2.55   10027140 4.199806e+10  Americas                 Caribbean
## 9484      2.62   15177280 2.619562e+10  Americas             South America
## 9485      2.85   83787634 1.631434e+11    Africa           Northern Africa
## 9486      2.24    6055208 1.606142e+10  Americas           Central America
## 9487      5.04     750918 6.403432e+09    Africa             Middle Africa
## 9488      4.88    4789568 8.383377e+08    Africa            Eastern Africa
## 9489      1.62    1328068 8.626740e+09    Europe           Northern Europe
## 9490      4.77   89858696 1.962659e+10    Africa            Eastern Africa
## 9491      2.64     867327 1.946634e+09   Oceania                 Melanesia
## 9492      1.83    5395816 1.495734e+11    Europe           Northern Europe
## 9493      1.98   63268405 1.506143e+12    Europe            Western Europe
## 9494      2.09     270862           NA   Oceania                 Polynesia
## 9495      4.18    1577298 6.649167e+09    Africa             Middle Africa
## 9496      5.79    1749099 1.277886e+09    Africa            Western Africa
## 9497      1.82    4196401 5.987225e+09      Asia              Western Asia
## 9498      1.40   80424665 2.131457e+12    Europe            Western Europe
## 9499      3.99   24928503 1.004280e+10    Africa            Western Africa
## 9500      1.51   11153047 1.430345e+11    Europe           Southern Europe
## 9501      2.12      56441           NA  Americas          Northern America
## 9502      2.22     105070 5.785328e+08  Americas                 Caribbean
## 9503      3.91   15049280 2.783855e+10  Americas           Central America
## 9504      5.09   11316351 5.691016e+09    Africa            Western Africa
## 9505      5.05    1673509 2.573484e+08    Africa            Western Africa
## 9506      2.64     755883           NA  Americas             South America
## 9507      3.28   10144890 3.903821e+09  Americas                 Caribbean
## 9508      3.10    7621414 1.094213e+10  Americas           Central America
## 9509      1.10    7044211 2.641367e+11      Asia              Eastern Asia
## 9510      1.38    9988846 5.729318e+10    Europe            Eastern Europe
## 9511      2.11     321030 1.110516e+10    Europe           Northern Europe
## 9512      2.53 1247446011 1.040055e+12      Asia             Southern Asia
## 9513      2.40  244808254 2.924849e+11      Asia        South-Eastern Asia
## 9514      1.91   75184322           NA      Asia             Southern Asia
## 9515      4.15   31867758 2.591888e+10      Asia              Western Asia
## 9516      2.00    4652714 1.226236e+11    Europe           Northern Europe
## 9517      2.92    7563334 1.775214e+11      Asia              Western Asia
## 9518      1.45   59678993 1.150683e+12    Europe           Southern Europe
## 9519      2.31    2752358 9.927060e+09  Americas                 Caribbean
## 9520      1.39  127252900 5.058762e+12      Asia              Eastern Asia
## 9521      3.39    6760371 1.600111e+10      Asia              Western Asia
## 9522      2.52   16554305 4.354728e+10      Asia              Central Asia
## 9523      4.54   41419954 1.984276e+10    Africa            Eastern Africa
## 9524      3.01     104662 7.739471e+07   Oceania                Micronesia
## 9525      1.29   49356692 8.305234e+11      Asia              Eastern Asia
## 9526      2.65    3239181 6.843929e+10      Asia              Western Asia
## 9527      3.03    5553827 2.172768e+09      Asia              Central Asia
## 9528      3.20    6366909 3.721626e+09      Asia        South-Eastern Asia
## 9529      1.57    2063661 1.183386e+10    Europe           Northern Europe
## 9530      1.50    4591698 2.937347e+10      Asia              Western Asia
## 9531      3.15    2032950 1.138570e+09    Africa           Southern Africa
## 9532      4.95    4079574 1.128930e+09    Africa            Western Africa
## 9533      2.47    6288652           NA    Africa           Northern Africa
## 9534      1.49    3070593 1.855591e+10    Europe           Northern Europe
## 9535      1.65     519981 2.692859e+10    Europe            Western Europe
## 9536      1.03     546682 2.237307e+10      Asia              Eastern Asia
## 9537      1.44    2065888 4.713515e+09    Europe           Southern Europe
## 9538      4.59   21678867 5.076555e+09    Africa            Eastern Africa
## 9539      5.55   15226813 2.882733e+09    Africa            Eastern Africa
## 9540      1.99   28572970 1.548150e+11      Asia        South-Eastern Asia
## 9541      2.31     338618 1.311837e+09      Asia             Southern Asia
## 9542      6.85   15639115 4.313255e+09    Africa            Western Africa
## 9543      1.37     414075 4.698472e+09    Europe           Southern Europe
## 9544      4.78    3683221 2.207705e+09    Africa            Western Africa
## 9545      1.51    1253089 6.909270e+09    Africa            Eastern Africa
## 9546      2.25  120365271 7.197424e+11  Americas           Central America
## 9547      3.40     103476 2.415812e+08   Oceania                Micronesia
## 9548      1.47    4077811 2.261588e+09    Europe            Eastern Europe
## 9549      2.45    2759074 2.497919e+09      Asia              Eastern Asia
## 9550      1.69     622957 1.440190e+09    Europe           Southern Europe
## 9551      2.65   32531964 6.263313e+10    Africa           Northern Africa
## 9552      5.34   25016921 9.609340e+09    Africa            Eastern Africa
## 9553      3.17    2240161 6.389325e+09    Africa           Southern Africa
## 9554      2.50   27179237 8.379719e+09      Asia             Southern Asia
## 9555      1.76   16689863 4.463622e+11    Europe            Western Europe
## 9556      2.17     249755           NA   Oceania                 Melanesia
## 9557      2.10    4404483           NA   Oceania Australia and New Zealand
## 9558      2.59    5807787 5.494417e+09  Americas           Central America
## 9559      7.58   16946485 2.845155e+09    Africa            Western Africa
## 9560      6.02  163770669 9.129302e+10    Africa            Western Africa
## 9561      1.88    4953945 1.982526e+11    Europe           Northern Europe
## 9562      2.90    3210003 3.330416e+10      Asia              Western Asia
## 9563      3.35  173669648 1.187904e+11      Asia             Southern Asia
## 9564      2.52    3681979 2.376403e+10  Americas           Central America
## 9565      3.90    7001172 5.563353e+09   Oceania                 Melanesia
## 9566      2.93    6293763 1.088624e+10  Americas             South America
## 9567      2.48   29759891 9.890126e+10  Americas             South America
## 9568      3.11   94501233 1.338149e+11      Asia        South-Eastern Asia
## 9569      1.39   38594217 2.619501e+11    Europe            Eastern Europe
## 9570      1.33   10558909 1.229525e+11    Europe           Southern Europe
## 9571      1.65    3701997           NA  Americas                 Caribbean
## 9572      2.06    1905437 6.760697e+10      Asia              Western Asia
## 9573      1.39   20111664 5.632036e+10    Europe            Eastern Europe
## 9574      1.58  143211476 4.331921e+11    Europe            Eastern Europe
## 9575      4.73   10556429 3.891912e+09    Africa            Eastern Africa
## 9576      1.96     179278 7.821290e+08  Americas                 Caribbean
## 9577      2.05     109341 5.098667e+08  Americas                 Caribbean
## 9578      4.28     187434 3.351628e+08   Oceania                 Polynesia
## 9579      2.76   28788438 2.784035e+11      Asia              Western Asia
## 9580      5.02   13357003 7.168101e+09    Africa            Western Africa
## 9581      1.37    9023881 8.865794e+09    Europe           Southern Europe
## 9582      2.23      93810 7.980037e+08    Africa            Eastern Africa
## 9583      4.86    5908908 1.668761e+09    Africa            Western Africa
## 9584      1.27    5190666 1.738086e+11      Asia        South-Eastern Asia
## 9585      1.37    5411377 4.729446e+10    Europe            Eastern Europe
## 9586      1.49    2059023 2.603711e+10    Europe           Southern Europe
## 9587      4.17     537648 6.709244e+08   Oceania                 Melanesia
## 9588      2.44   52237272 1.934991e+11    Africa           Southern Africa
## 9589      1.47   46708366 7.171940e+11    Europe           Southern Europe
## 9590      2.35   20315673 2.926088e+10      Asia             Southern Asia
## 9591      4.56   36918193 2.170094e+10    Africa           Northern Africa
## 9592      2.32     523439           NA  Americas             South America
## 9593      3.48    1212458 1.936454e+09    Africa           Southern Africa
## 9594      1.90    9462352 3.167986e+11    Europe           Northern Europe
## 9595      1.51    7925813 3.009384e+11    Europe            Western Europe
## 9596      3.04   20501167           NA      Asia              Western Asia
## 9597      3.81    7753925 2.060715e+09      Asia              Central Asia
## 9598      5.36   47122998 2.122808e+10    Africa            Eastern Africa
## 9599      1.43   66902958 1.875896e+11      Asia        South-Eastern Asia
## 9600      6.11    1077602 5.314773e+08      Asia        South-Eastern Asia
## 9601      4.75    6566179 1.658132e+09    Africa            Western Africa
## 9602      3.86     104392 2.130709e+08   Oceania                 Polynesia
## 9603      1.80    1334790 1.390608e+10  Americas                 Caribbean
## 9604      2.04   10758870 3.256455e+10    Africa           Northern Africa
## 9605      2.08   73517002 4.227388e+11      Asia              Western Asia
## 9606      2.38    5106672 1.142656e+10      Asia              Central Asia
## 9607      6.06   34260342 1.355207e+10    Africa            Eastern Africa
## 9608      1.45   45477690 4.998559e+10    Europe            Eastern Europe
## 9609      1.84    8734722 1.661705e+11      Asia              Western Asia
## 9610      1.90   63164949 1.756002e+12    Europe           Northern Europe
## 9611      1.90  312390368 1.174422e+13  Americas          Northern America
## 9612      2.07    3385610 3.227470e+10  Americas             South America
## 9613      2.38   28158395 2.912881e+10      Asia              Central Asia
## 9614      3.46     241876 3.864832e+08   Oceania                 Melanesia
## 9615      2.44   29427631 1.660622e+11  Americas             South America
## 9616      4.14    4181135           NA      Asia              Western Asia
## 9617      1.79   89321903 6.653011e+10      Asia        South-Eastern Asia
## 9618      4.35   24234940 1.310422e+10      Asia              Western Asia
## 9619      5.77   14343526 5.917196e+09    Africa            Eastern Africa
## 9620      3.64   14255592 4.407439e+09    Africa            Eastern Africa
## 9621      1.76    2880667           NA    Europe           Southern Europe
## 9622      2.82   37439427           NA    Africa           Northern Africa
## 9623      5.98   22685632           NA    Africa             Middle Africa
## 9624      2.10      89069           NA  Americas                 Caribbean
## 9625      2.19   42095224           NA  Americas             South America
## 9626      1.47    2978339           NA      Asia              Western Asia
## 9627      1.68     102393           NA  Americas                 Caribbean
## 9628      1.89   22911375           NA   Oceania Australia and New Zealand
## 9629      1.46    8455477           NA    Europe            Western Europe
## 9630      1.94    9361477           NA      Asia              Western Asia
## 9631      1.89     372388           NA  Americas                 Caribbean
## 9632      2.09    1333577           NA      Asia              Western Asia
## 9633      2.21  155257387           NA      Asia             Southern Asia
## 9634      1.85     281580           NA  Americas                 Caribbean
## 9635      1.48    9490962           NA    Europe            Eastern Europe
## 9636      1.85   11079521           NA    Europe            Western Europe
## 9637      2.72     336707           NA  Americas           Central America
## 9638      4.93   10049792           NA    Africa            Western Africa
## 9639      2.28     743711           NA      Asia             Southern Asia
## 9640      3.26   10238762           NA  Americas             South America
## 9641      1.27    3828419           NA    Europe           Southern Europe
## 9642      2.67    2132822           NA    Africa           Southern Africa
## 9643      1.81  202401584           NA  Americas             South America
## 9644      2.01     405512           NA      Asia        South-Eastern Asia
## 9645      1.52    7303741           NA    Europe            Eastern Europe
## 9646      5.69   16590813           NA    Africa            Western Africa
## 9647      6.12   10124572           NA    Africa            Eastern Africa
## 9648      2.89   14832255           NA      Asia        South-Eastern Asia
## 9649      4.86   21659488           NA    Africa             Middle Africa
## 9650      1.66   34868151           NA  Americas          Northern America
## 9651      2.33     500870           NA    Africa            Western Africa
## 9652      4.45    4619500           NA    Africa             Middle Africa
## 9653      6.38   12715465           NA    Africa             Middle Africa
## 9654      1.83   17388437           NA  Americas             South America
## 9655      1.55 1355386952           NA      Asia              Eastern Asia
## 9656      2.32   46881018           NA  Americas             South America
## 9657      4.78     733661           NA    Africa            Eastern Africa
## 9658      6.04   70291160           NA    Africa             Middle Africa
## 9659      5.01    4286188           NA    Africa             Middle Africa
## 9660      1.81    4654148           NA  Americas           Central America
## 9661      4.89   21102641           NA    Africa            Western Africa
## 9662      1.49    4287015           NA    Europe           Southern Europe
## 9663      1.45   11342631           NA  Americas                 Caribbean
## 9664      1.47    1129303           NA      Asia              Western Asia
## 9665      1.55   10545161           NA    Europe            Eastern Europe
## 9666      1.73    5600972           NA    Europe           Northern Europe
## 9667      3.46     853069           NA    Africa            Eastern Africa
## 9668      2.52   10155036           NA  Americas                 Caribbean
## 9669      2.59   15419493           NA  Americas             South America
## 9670      2.81   85660902           NA    Africa           Northern Africa
## 9671      2.21    6072233           NA  Americas           Central America
## 9672      4.95     773729           NA    Africa             Middle Africa
## 9673      4.79    4892233           NA    Africa            Eastern Africa
## 9674      1.61    1324040           NA    Europe           Northern Europe
## 9675      4.64   92191211           NA    Africa            Eastern Africa
## 9676      2.62     874158           NA   Oceania                 Melanesia
## 9677      1.80    5424644           NA    Europe           Northern Europe
## 9678      1.98   63561798           NA    Europe            Western Europe
## 9679      2.08     273775           NA   Oceania                 Polynesia
## 9680      4.14    1613489           NA    Africa             Middle Africa
## 9681      5.78    1807108           NA    Africa            Western Africa
## 9682      1.82    4138920           NA      Asia              Western Asia
## 9683      1.41   80477952           NA    Europe            Western Europe
## 9684      3.92   25544565           NA    Africa            Western Africa
## 9685      1.52   11109662           NA    Europe           Southern Europe
## 9686      2.02      56344           NA  Americas          Northern America
## 9687      2.19     105476           NA  Americas                 Caribbean
## 9688      3.84   15368759           NA  Americas           Central America
## 9689      5.00   11628767           NA    Africa            Western Africa
## 9690      4.99    1714620           NA    Africa            Western Africa
## 9691      2.59     758410           NA  Americas             South America
## 9692      3.21   10288828           NA  Americas                 Caribbean
## 9693      3.05    7736131           NA  Americas           Central America
## 9694      1.12    7101858           NA      Asia              Eastern Asia
## 9695      1.40    9958334           NA    Europe            Eastern Europe
## 9696      2.10     323407           NA    Europe           Northern Europe
## 9697      2.51 1263589639           NA      Asia             Southern Asia
## 9698      2.37  248037853           NA      Asia        South-Eastern Asia
## 9699      1.92   76156975           NA      Asia             Southern Asia
## 9700      4.09   32957622           NA      Asia              Western Asia
## 9701      2.00    4667868           NA    Europe           Northern Europe
## 9702      2.91    7694507           NA      Asia              Western Asia
## 9703      1.47   59737717           NA    Europe           Southern Europe
## 9704      2.28    2762965           NA  Americas                 Caribbean
## 9705      1.41  127139821           NA      Asia              Eastern Asia
## 9706      3.31    6994451           NA      Asia              Western Asia
## 9707      2.49   16821455           NA      Asia              Central Asia
## 9708      4.46   42542978           NA    Africa            Eastern Africa
## 9709      2.98     106620           NA   Oceania                Micronesia
## 9710      1.30   49608451           NA      Asia              Eastern Asia
## 9711      2.63    3419581           NA      Asia              Western Asia
## 9712      3.06    5648230           NA      Asia              Central Asia
## 9713      3.11    6473050           NA      Asia        South-Eastern Asia
## 9714      1.59    2037090           NA    Europe           Northern Europe
## 9715      1.50    4924257           NA      Asia              Western Asia
## 9716      3.09    2057331           NA    Africa           Southern Africa
## 9717      4.87    4190155           NA    Africa            Western Africa
## 9718      2.41    6283403           NA    Africa           Northern Africa
## 9719      1.50    3016496           NA    Europe           Northern Europe
## 9720      1.66     532479           NA    Europe            Western Europe
## 9721      1.06     557763           NA      Asia              Eastern Asia
## 9722      1.44    2069270           NA    Europe           Southern Europe
## 9723      4.53   22293720           NA    Africa            Eastern Africa
## 9724      5.47   15700436           NA    Africa            Eastern Africa
## 9725      1.98   29021940           NA      Asia        South-Eastern Asia
## 9726      2.29     344817           NA      Asia             Southern Asia
## 9727      6.85   16112333           NA    Africa            Western Africa
## 9728      1.36     415596           NA    Europe           Southern Europe
## 9729      4.73    3777067           NA    Africa            Western Africa
## 9730      1.50    1258335           NA    Africa            Eastern Africa
## 9731      2.22  122070963           NA  Americas           Central America
## 9732      3.35     103516           NA   Oceania                Micronesia
## 9733      1.46    4074754           NA    Europe            Eastern Europe
## 9734      2.45    2808339           NA      Asia              Eastern Asia
## 9735      1.68     623864           NA    Europe           Southern Europe
## 9736      2.71   32984190           NA    Africa           Northern Africa
## 9737      5.26   25732928           NA    Africa            Eastern Africa
## 9738      3.11    2291645           NA    Africa           Southern Africa
## 9739      2.39   27500515           NA      Asia             Southern Asia
## 9740      1.76   16749318           NA    Europe            Western Europe
## 9741      2.15     253129           NA   Oceania                 Melanesia
## 9742      2.07    4435883           NA   Oceania Australia and New Zealand
## 9743      2.54    5877034           NA  Americas           Central America
## 9744      7.57   17635782           NA    Africa            Western Africa
## 9745      6.00  168240403           NA    Africa            Western Africa
## 9746      1.85    5018367           NA    Europe           Northern Europe
## 9747      2.88    3545192           NA      Asia              Western Asia
## 9748      3.26  177392252           NA      Asia             Southern Asia
## 9749      2.49    3743761           NA  Americas           Central America
## 9750      3.84    7154870           NA   Oceania                 Melanesia
## 9751      2.90    6379162           NA  Americas             South America
## 9752      2.45   30158768           NA  Americas             South America
## 9753      3.08   96017322           NA      Asia        South-Eastern Asia
## 9754      1.40   38609486           NA    Europe            Eastern Europe
## 9755      1.32   10515016           NA    Europe           Southern Europe
## 9756      1.64    3695674           NA  Americas                 Caribbean
## 9757      2.04    2015624           NA      Asia              Western Asia
## 9758      1.40   19944954           NA    Europe            Eastern Europe
## 9759      1.59  143287536           NA    Europe            Eastern Europe
## 9760      4.62   10817350           NA    Africa            Eastern Africa
## 9761      1.94     180890           NA  Americas                 Caribbean
## 9762      2.02     109334           NA  Americas                 Caribbean
## 9763      4.21     188901           NA   Oceania                 Polynesia
## 9764      2.70   29496047           NA      Asia              Western Asia
## 9765      4.98   13780108           NA    Africa            Western Africa
## 9766      1.37    8982578           NA    Europe           Southern Europe
## 9767      2.21      94524           NA    Africa            Eastern Africa
## 9768      4.78    6043157           NA    Africa            Western Africa
## 9769      1.28    5299524           NA      Asia        South-Eastern Asia
## 9770      1.38    5415496           NA    Europe            Eastern Europe
## 9771      1.50    2062881           NA    Europe           Southern Europe
## 9772      4.10     549162           NA   Oceania                 Melanesia
## 9773      2.41   52837274           NA    Africa           Southern Africa
## 9774      1.49   46637082           NA    Europe           Southern Europe
## 9775      2.35   20421862           NA      Asia             Southern Asia
## 9776      4.49   37712420           NA    Africa           Northern Africa
## 9777      2.29     528535           NA  Americas             South America
## 9778      3.41    1231694           NA    Africa           Southern Africa
## 9779      1.91    9543457           NA    Europe           Northern Europe
## 9780      1.52    8022628           NA    Europe            Western Europe
## 9781      3.00   19978756           NA      Asia              Western Asia
## 9782      3.82    7930929           NA      Asia              Central Asia
## 9783      5.29   48645709           NA    Africa            Eastern Africa
## 9784      1.41   67164130           NA      Asia        South-Eastern Asia
## 9785      5.98    1102076           NA      Asia        South-Eastern Asia
## 9786      4.70    6745581           NA    Africa            Western Africa
## 9787      3.82     104769           NA   Oceania                 Polynesia
## 9788      1.80    1341579           NA  Americas                 Caribbean
## 9789      2.02   10881450           NA    Africa           Northern Africa
## 9790      2.06   74849187           NA      Asia              Western Asia
## 9791      2.35    5172941           NA      Asia              Central Asia
## 9792      5.96   35400620           NA    Africa            Eastern Africa
## 9793      1.46   45319949           NA    Europe            Eastern Europe
## 9794      1.82    8952542           NA      Asia              Western Asia
## 9795      1.90   63573766           NA    Europe           Northern Europe
## 9796      1.90  314799465           NA  Americas          Northern America
## 9797      2.06    3396753           NA  Americas             South America
## 9798      2.34   28592451           NA      Asia              Central Asia
## 9799      3.42     247498           NA   Oceania                 Melanesia
## 9800      2.42   29854238           NA  Americas             South America
## 9801      4.08    4297826           NA      Asia              Western Asia
## 9802      1.77   90335547           NA      Asia        South-Eastern Asia
## 9803      4.21   24882792           NA      Asia              Western Asia
## 9804      5.73   14786581           NA    Africa            Eastern Africa
## 9805      3.56   14565482           NA    Africa            Eastern Africa
## 9806      1.77    2883281           NA    Europe           Southern Europe
## 9807      2.80   38186135           NA    Africa           Northern Africa
## 9808      5.86   23448202           NA    Africa             Middle Africa
## 9809      2.09      89985           NA  Americas                 Caribbean
## 9810      2.18   42538304           NA  Americas             South America
## 9811      1.44    2992192           NA      Asia              Western Asia
## 9812      1.67     102921           NA  Americas                 Caribbean
## 9813      1.88   23270465           NA   Oceania Australia and New Zealand
## 9814      1.47    8486962           NA    Europe            Western Europe
## 9815      1.92    9497496           NA      Asia              Western Asia
## 9816      1.89     377841           NA  Americas                 Caribbean
## 9817      2.08    1349427           NA      Asia              Western Asia
## 9818      2.18  157157394           NA      Asia             Southern Asia
## 9819      1.85     282503           NA  Americas                 Caribbean
## 9820      1.49    9497294           NA    Europe            Eastern Europe
## 9821      1.85   11153122           NA    Europe            Western Europe
## 9822      2.68     344193           NA  Americas           Central America
## 9823      4.85   10322232           NA    Africa            Western Africa
## 9824      2.23     754637           NA      Asia             Southern Asia
## 9825      3.22   10399931           NA  Americas             South America
## 9826      1.28    3823533           NA    Europe           Southern Europe
## 9827      2.62    2176510           NA    Africa           Southern Africa
## 9828      1.80  204259377           NA  Americas             South America
## 9829      1.99     411499           NA      Asia        South-Eastern Asia
## 9830      1.54    7252539           NA    Europe            Eastern Europe
## 9831      5.61   17084554           NA    Africa            Western Africa
## 9832      6.03   10465959           NA    Africa            Eastern Africa
## 9833      2.86   15078564           NA      Asia        South-Eastern Asia
## 9834      4.78   22211166           NA    Africa             Middle Africa
## 9835      1.67   35230612           NA  Americas          Northern America
## 9836      2.29     507258           NA    Africa            Western Africa
## 9837      4.37    4710678           NA    Africa             Middle Africa
## 9838      6.26   13145788           NA    Africa             Middle Africa
## 9839      1.82   17575833           NA  Americas             South America
## 9840      1.56 1362514260           NA      Asia              Eastern Asia
## 9841      2.29   47342363           NA  Americas             South America
## 9842      4.71     751697           NA    Africa            Eastern Africa
## 9843      5.93   72552861           NA    Africa             Middle Africa
## 9844      4.97    4394334           NA    Africa             Middle Africa
## 9845      1.80    4706433           NA  Americas           Central America
## 9846      4.87   21622490           NA    Africa            Western Africa
## 9847      1.50    4271497           NA    Europe           Southern Europe
## 9848      1.45   11362505           NA  Americas                 Caribbean
## 9849      1.46    1141652           NA      Asia              Western Asia
## 9850      1.57   10545314           NA    Europe            Eastern Europe
## 9851      1.88    5624293           NA    Europe           Northern Europe
## 9852      3.39     864554           NA    Africa            Eastern Africa
## 9853      2.48   10281408           NA  Americas                 Caribbean
## 9854      2.56   15661312           NA  Americas             South America
## 9855      2.77   87613909           NA    Africa           Northern Africa
## 9856      2.18    6089644           NA  Americas           Central America
## 9857      4.85     797082           NA    Africa             Middle Africa
## 9858      4.70    4998824           NA    Africa            Eastern Africa
## 9859      1.60    1320050           NA    Europe           Northern Europe
## 9860      4.52   94558374           NA    Africa            Eastern Africa
## 9861      2.59     880487           NA   Oceania                 Melanesia
## 9862      1.85    5453061           NA    Europe           Northern Europe
## 9863      1.98   63844529           NA    Europe            Western Europe
## 9864      2.06     276766           NA   Oceania                 Polynesia
## 9865      4.09    1650351           NA    Africa             Middle Africa
## 9866      5.75    1866878           NA    Africa            Western Africa
## 9867      1.82    4082727           NA      Asia              Western Asia
## 9868      1.42   80565861           NA    Europe            Western Europe
## 9869      3.86   26164432           NA    Africa            Western Africa
## 9870      1.53   11055164           NA    Europe           Southern Europe
## 9871      2.08      56265           NA  Americas          Northern America
## 9872      2.17     105902           NA  Americas                 Caribbean
## 9873      3.78   15690793           NA  Americas           Central America
## 9874      4.92   11948726           NA    Africa            Western Africa
## 9875      4.93    1757138           NA    Africa            Western Africa
## 9876      2.55     761033           NA  Americas             South America
## 9877      3.15   10431249           NA  Americas                 Caribbean
## 9878      3.00    7849059           NA  Americas           Central America
## 9879      1.14    7163930           NA      Asia              Eastern Asia
## 9880      1.41    9924507           NA    Europe            Eastern Europe
## 9881      2.08     325392           NA    Europe           Northern Europe
## 9882      2.48 1279498874           NA      Asia             Southern Asia
## 9883      2.34  251268276           NA      Asia        South-Eastern Asia
## 9884      1.92   77152445           NA      Asia             Southern Asia
## 9885      4.03   34107366           NA      Asia              Western Asia
## 9886      2.00    4671263           NA    Europe           Northern Europe
## 9887      2.90    7817818           NA      Asia              Western Asia
## 9888      1.49   59771094           NA    Europe           Southern Europe
## 9889      2.26    2773215           NA  Americas                 Caribbean
## 9890      1.42  126984964           NA      Asia              Eastern Asia
## 9891      3.24    7214832           NA      Asia              Western Asia
## 9892      2.46   17099546           NA      Asia              Central Asia
## 9893      4.38   43692881           NA    Africa            Eastern Africa
## 9894      2.95     108544           NA   Oceania                Micronesia
## 9895      1.32   49846756           NA      Asia              Eastern Asia
## 9896      2.60    3593689           NA      Asia              Western Asia
## 9897      3.08    5745698           NA      Asia              Central Asia
## 9898      3.02    6579985           NA      Asia        South-Eastern Asia
## 9899      1.61    2011857           NA    Europe           Northern Europe
## 9900      1.50    5286990           NA      Asia              Western Asia
## 9901      3.04    2083061           NA    Africa           Southern Africa
## 9902      4.79    4293692           NA    Africa            Western Africa
## 9903      2.36    6265987           NA    Africa           Northern Africa
## 9904      1.52    2963810           NA    Europe           Northern Europe
## 9905      1.67     544885           NA    Europe            Western Europe
## 9906      1.08     568056           NA      Asia              Eastern Asia
## 9907      1.43    2072543           NA    Europe           Southern Europe
## 9908      4.47   22924557           NA    Africa            Eastern Africa
## 9909      5.39   16190126           NA    Africa            Eastern Africa
## 9910      1.96   29465372           NA      Asia        South-Eastern Asia
## 9911      2.26     351111           NA      Asia             Southern Asia
## 9912      6.85   16592097           NA    Africa            Western Africa
## 9913      1.36     416747           NA    Europe           Southern Europe
## 9914      4.67    3872684           NA    Africa            Western Africa
## 9915      1.50    1263560           NA    Africa            Eastern Africa
## 9916      2.19  123740109           NA  Americas           Central America
## 9917      3.29     103718           NA   Oceania                Micronesia
## 9918      1.46    4073714           NA    Europe            Eastern Europe
## 9919      2.44    2859174           NA      Asia              Eastern Asia
## 9920      1.67     624648           NA    Europe           Southern Europe
## 9921      2.74   33452686           NA    Africa           Northern Africa
## 9922      5.19   26467180           NA    Africa            Eastern Africa
## 9923      3.05    2346592           NA    Africa           Southern Africa
## 9924      2.30   27834981           NA      Asia             Southern Asia
## 9925      1.77   16809157           NA    Europe            Western Europe
## 9926      2.13     256473           NA   Oceania                 Melanesia
## 9927      2.05    4465276           NA   Oceania Australia and New Zealand
## 9928      2.50    5945646           NA  Americas           Central America
## 9929      7.56   18358863           NA    Africa            Western Africa
## 9930      5.98  172816517           NA    Africa            Western Africa
## 9931      1.93    5083450           NA    Europe           Northern Europe
## 9932      2.85    3906912           NA      Asia              Western Asia
## 9933      3.19  181192646           NA      Asia             Southern Asia
## 9934      2.47    3805683           NA  Americas           Central America
## 9935      3.78    7308864           NA   Oceania                 Melanesia
## 9936      2.86    6465669           NA  Americas             South America
## 9937      2.42   30565461           NA  Americas             South America
## 9938      3.04   97571676           NA      Asia        South-Eastern Asia
## 9939      1.42   38618698           NA    Europe            Eastern Europe
## 9940      1.32   10459716           NA    Europe           Southern Europe
## 9941      1.64    3690591           NA  Americas                 Caribbean
## 9942      2.02    2101288           NA      Asia              Western Asia
## 9943      1.42   19794163           NA    Europe            Eastern Europe
## 9944      1.60  143367341           NA    Europe            Eastern Europe
## 9945      4.51   11078095           NA    Africa            Eastern Africa
## 9946      1.91     182305           NA  Americas                 Caribbean
## 9947      2.00     109327           NA  Americas                 Caribbean
## 9948      4.15     190390           NA   Oceania                 Polynesia
## 9949      2.64   30201051           NA      Asia              Western Asia
## 9950      4.93   14221041           NA    Africa            Western Africa
## 9951      1.37    8937605           NA    Europe           Southern Europe
## 9952      2.18      95215           NA    Africa            Eastern Africa
## 9953      4.71    6178859           NA    Africa            Western Africa
## 9954      1.28    5405009           NA      Asia        South-Eastern Asia
## 9955      1.40    5419288           NA    Europe            Eastern Europe
## 9956      1.51    2064819           NA    Europe           Southern Europe
## 9957      4.03     560685           NA   Oceania                 Melanesia
## 9958      2.39   53416609           NA    Africa           Southern Africa
## 9959      1.51   46455163           NA    Europe           Southern Europe
## 9960      2.34   20521959           NA      Asia             Southern Asia
## 9961      4.42   38515095           NA    Africa           Northern Africa
## 9962      2.27     533450           NA  Americas             South America
## 9963      3.33    1250641           NA    Africa           Southern Africa
## 9964      1.93    9624247           NA    Europe           Northern Europe
## 9965      1.53    8118719           NA    Europe            Western Europe
## 9966      2.96   19322593           NA      Asia              Western Asia
## 9967      3.82    8111894           NA      Asia              Central Asia
## 9968      5.21   50213457           NA    Africa            Eastern Africa
## 9969      1.40   67451422           NA      Asia        South-Eastern Asia
## 9970      5.86    1129315           NA      Asia        South-Eastern Asia
## 9971      4.64    6928719           NA    Africa            Western Africa
## 9972      3.77     105139           NA   Oceania                 Polynesia
## 9973      1.80    1348240           NA  Americas                 Caribbean
## 9974      2.01   11005706           NA    Africa           Northern Africa
## 9975      2.04   76223639           NA      Asia              Western Asia
## 9976      2.33    5240088           NA      Asia              Central Asia
## 9977      5.87   36573387           NA    Africa            Eastern Africa
## 9978      1.47   45165211           NA    Europe            Eastern Europe
## 9979      1.80    9039978           NA      Asia              Western Asia
## 9980      1.89   63955654           NA    Europe           Northern Europe
## 9981      1.98  317135919           NA  Americas          Northern America
## 9982      2.05    3407969           NA  Americas             South America
## 9983      2.31   29033361           NA      Asia              Central Asia
## 9984      3.38     253165           NA   Oceania                 Melanesia
## 9985      2.39   30276045           NA  Americas             South America
## 9986      4.01    4418341           NA      Asia              Western Asia
## 9987      1.74   91378752           NA      Asia        South-Eastern Asia
## 9988      4.08   25533217           NA      Asia              Western Asia
## 9989      5.69   15246086           NA    Africa            Eastern Africa
## 9990      3.49   14898092           NA    Africa            Eastern Africa
## 9991      1.78    2889676           NA    Europe           Southern Europe
## 9992      2.76   38934334           NA    Africa           Northern Africa
## 9993      5.75   24227524           NA    Africa             Middle Africa
## 9994      2.08      90900           NA  Americas                 Caribbean
## 9995      2.16   42980026           NA  Americas             South America
## 9996      1.42    3006154           NA      Asia              Western Asia
## 9997      1.67     103441           NA  Americas                 Caribbean
## 9998      1.88   23622353           NA   Oceania Australia and New Zealand
## 9999      1.48    8516916           NA    Europe            Western Europe
##      group
## 1     West
## 2     Rest
## 3     Rest
## 4     Rest
## 5     Rest
## 6     Rest
## 7     Rest
## 8     Rest
## 9     West
## 10    Rest
## 11    Rest
## 12    Rest
## 13    Rest
## 14    Rest
## 15    West
## 16    West
## 17    Rest
## 18    Rest
## 19    Rest
## 20    Rest
## 21    West
## 22    Rest
## 23    Rest
## 24    Rest
## 25    West
## 26    Rest
## 27    Rest
## 28    Rest
## 29    Rest
## 30    West
## 31    Rest
## 32    Rest
## 33    Rest
## 34    Rest
## 35    Rest
## 36    Rest
## 37    Rest
## 38    Rest
## 39    Rest
## 40    Rest
## 41    Rest
## 42    West
## 43    Rest
## 44    Rest
## 45    West
## 46    West
## 47    Rest
## 48    Rest
## 49    Rest
## 50    Rest
## 51    Rest
## 52    Rest
## 53    Rest
## 54    West
## 55    Rest
## 56    Rest
## 57    West
## 58    West
## 59    Rest
## 60    Rest
## 61    Rest
## 62    Rest
## 63    West
## 64    Rest
## 65    West
## 66    West
## 67    Rest
## 68    Rest
## 69    Rest
## 70    Rest
## 71    Rest
## 72    Rest
## 73    Rest
## 74    Rest
## 75    West
## 76    West
## 77    Rest
## 78    Rest
## 79    Rest
## 80    Rest
## 81    West
## 82    Rest
## 83    West
## 84    Rest
## 85    Rest
## 86    Rest
## 87    Rest
## 88    Rest
## 89    Rest
## 90    Rest
## 91    Rest
## 92    Rest
## 93    Rest
## 94    West
## 95    Rest
## 96    Rest
## 97    Rest
## 98    Rest
## 99    West
## 100   West
## 101   Rest
## 102   West
## 103   Rest
## 104   Rest
## 105   Rest
## 106   Rest
## 107   Rest
## 108   West
## 109   Rest
## 110   Rest
## 111   Rest
## 112   Rest
## 113   West
## 114   Rest
## 115   West
## 116   Rest
## 117   Rest
## 118   Rest
## 119   Rest
## 120   West
## 121   Rest
## 122   Rest
## 123   Rest
## 124   Rest
## 125   Rest
## 126   West
## 127   Rest
## 128   Rest
## 129   Rest
## 130   Rest
## 131   Rest
## 132   Rest
## 133   Rest
## 134   West
## 135   West
## 136   Rest
## 137   Rest
## 138   West
## 139   West
## 140   Rest
## 141   Rest
## 142   Rest
## 143   Rest
## 144   Rest
## 145   Rest
## 146   West
## 147   Rest
## 148   Rest
## 149   Rest
## 150   West
## 151   West
## 152   Rest
## 153   Rest
## 154   West
## 155   Rest
## 156   Rest
## 157   Rest
## 158   Rest
## 159   West
## 160   West
## 161   Rest
## 162   Rest
## 163   Rest
## 164   Rest
## 165   Rest
## 166   Rest
## 167   Rest
## 168   Rest
## 169   Rest
## 170   Rest
## 171   Rest
## 172   Rest
## 173   West
## 174   Rest
## 175   West
## 176   West
## 177   Rest
## 178   Rest
## 179   Rest
## 180   Rest
## 181   Rest
## 182   Rest
## 183   Rest
## 184   Rest
## 185   Rest
## 186   West
## 187   Rest
## 188   Rest
## 189   Rest
## 190   Rest
## 191   Rest
## 192   Rest
## 193   Rest
## 194   West
## 195   Rest
## 196   Rest
## 197   Rest
## 198   Rest
## 199   Rest
## 200   West
## 201   West
## 202   Rest
## 203   Rest
## 204   Rest
## 205   Rest
## 206   West
## 207   Rest
## 208   Rest
## 209   Rest
## 210   West
## 211   Rest
## 212   Rest
## 213   Rest
## 214   Rest
## 215   West
## 216   Rest
## 217   Rest
## 218   Rest
## 219   Rest
## 220   Rest
## 221   Rest
## 222   Rest
## 223   Rest
## 224   Rest
## 225   Rest
## 226   Rest
## 227   West
## 228   Rest
## 229   Rest
## 230   West
## 231   West
## 232   Rest
## 233   Rest
## 234   Rest
## 235   Rest
## 236   Rest
## 237   Rest
## 238   Rest
## 239   West
## 240   Rest
## 241   Rest
## 242   West
## 243   West
## 244   Rest
## 245   Rest
## 246   Rest
## 247   Rest
## 248   West
## 249   Rest
## 250   West
## 251   West
## 252   Rest
## 253   Rest
## 254   Rest
## 255   Rest
## 256   Rest
## 257   Rest
## 258   Rest
## 259   Rest
## 260   West
## 261   West
## 262   Rest
## 263   Rest
## 264   Rest
## 265   Rest
## 266   West
## 267   Rest
## 268   West
## 269   Rest
## 270   Rest
## 271   Rest
## 272   Rest
## 273   Rest
## 274   Rest
## 275   Rest
## 276   Rest
## 277   Rest
## 278   Rest
## 279   West
## 280   Rest
## 281   Rest
## 282   Rest
## 283   Rest
## 284   West
## 285   West
## 286   Rest
## 287   West
## 288   Rest
## 289   Rest
## 290   Rest
## 291   Rest
## 292   Rest
## 293   West
## 294   Rest
## 295   Rest
## 296   Rest
## 297   Rest
## 298   West
## 299   Rest
## 300   West
## 301   Rest
## 302   Rest
## 303   Rest
## 304   Rest
## 305   West
## 306   Rest
## 307   Rest
## 308   Rest
## 309   Rest
## 310   Rest
## 311   West
## 312   Rest
## 313   Rest
## 314   Rest
## 315   Rest
## 316   Rest
## 317   Rest
## 318   Rest
## 319   West
## 320   West
## 321   Rest
## 322   Rest
## 323   West
## 324   West
## 325   Rest
## 326   Rest
## 327   Rest
## 328   Rest
## 329   Rest
## 330   Rest
## 331   West
## 332   Rest
## 333   Rest
## 334   Rest
## 335   West
## 336   West
## 337   Rest
## 338   Rest
## 339   West
## 340   Rest
## 341   Rest
## 342   Rest
## 343   Rest
## 344   West
## 345   West
## 346   Rest
## 347   Rest
## 348   Rest
## 349   Rest
## 350   Rest
## 351   Rest
## 352   Rest
## 353   Rest
## 354   Rest
## 355   Rest
## 356   Rest
## 357   Rest
## 358   West
## 359   Rest
## 360   West
## 361   West
## 362   Rest
## 363   Rest
## 364   Rest
## 365   Rest
## 366   Rest
## 367   Rest
## 368   Rest
## 369   Rest
## 370   Rest
## 371   West
## 372   Rest
## 373   Rest
## 374   Rest
## 375   Rest
## 376   Rest
## 377   Rest
## 378   Rest
## 379   West
## 380   Rest
## 381   Rest
## 382   Rest
## 383   Rest
## 384   Rest
## 385   West
## 386   West
## 387   Rest
## 388   Rest
## 389   Rest
## 390   Rest
## 391   West
## 392   Rest
## 393   Rest
## 394   Rest
## 395   West
## 396   Rest
## 397   Rest
## 398   Rest
## 399   Rest
## 400   West
## 401   Rest
## 402   Rest
## 403   Rest
## 404   Rest
## 405   Rest
## 406   Rest
## 407   Rest
## 408   Rest
## 409   Rest
## 410   Rest
## 411   Rest
## 412   West
## 413   Rest
## 414   Rest
## 415   West
## 416   West
## 417   Rest
## 418   Rest
## 419   Rest
## 420   Rest
## 421   Rest
## 422   Rest
## 423   Rest
## 424   West
## 425   Rest
## 426   Rest
## 427   West
## 428   West
## 429   Rest
## 430   Rest
## 431   Rest
## 432   Rest
## 433   West
## 434   Rest
## 435   West
## 436   West
## 437   Rest
## 438   Rest
## 439   Rest
## 440   Rest
## 441   Rest
## 442   Rest
## 443   Rest
## 444   Rest
## 445   West
## 446   West
## 447   Rest
## 448   Rest
## 449   Rest
## 450   Rest
## 451   West
## 452   Rest
## 453   West
## 454   Rest
## 455   Rest
## 456   Rest
## 457   Rest
## 458   Rest
## 459   Rest
## 460   Rest
## 461   Rest
## 462   Rest
## 463   Rest
## 464   West
## 465   Rest
## 466   Rest
## 467   Rest
## 468   Rest
## 469   West
## 470   West
## 471   Rest
## 472   West
## 473   Rest
## 474   Rest
## 475   Rest
## 476   Rest
## 477   Rest
## 478   West
## 479   Rest
## 480   Rest
## 481   Rest
## 482   Rest
## 483   West
## 484   Rest
## 485   West
## 486   Rest
## 487   Rest
## 488   Rest
## 489   Rest
## 490   West
## 491   Rest
## 492   Rest
## 493   Rest
## 494   Rest
## 495   Rest
## 496   West
## 497   Rest
## 498   Rest
## 499   Rest
## 500   Rest
## 501   Rest
## 502   Rest
## 503   Rest
## 504   West
## 505   West
## 506   Rest
## 507   Rest
## 508   West
## 509   West
## 510   Rest
## 511   Rest
## 512   Rest
## 513   Rest
## 514   Rest
## 515   Rest
## 516   West
## 517   Rest
## 518   Rest
## 519   Rest
## 520   West
## 521   West
## 522   Rest
## 523   Rest
## 524   West
## 525   Rest
## 526   Rest
## 527   Rest
## 528   Rest
## 529   West
## 530   West
## 531   Rest
## 532   Rest
## 533   Rest
## 534   Rest
## 535   Rest
## 536   Rest
## 537   Rest
## 538   Rest
## 539   Rest
## 540   Rest
## 541   Rest
## 542   Rest
## 543   West
## 544   Rest
## 545   West
## 546   West
## 547   Rest
## 548   Rest
## 549   Rest
## 550   Rest
## 551   Rest
## 552   Rest
## 553   Rest
## 554   Rest
## 555   Rest
## 556   West
## 557   Rest
## 558   Rest
## 559   Rest
## 560   Rest
## 561   Rest
## 562   Rest
## 563   Rest
## 564   West
## 565   Rest
## 566   Rest
## 567   Rest
## 568   Rest
## 569   Rest
## 570   West
## 571   West
## 572   Rest
## 573   Rest
## 574   Rest
## 575   Rest
## 576   West
## 577   Rest
## 578   Rest
## 579   Rest
## 580   West
## 581   Rest
## 582   Rest
## 583   Rest
## 584   Rest
## 585   West
## 586   Rest
## 587   Rest
## 588   Rest
## 589   Rest
## 590   Rest
## 591   Rest
## 592   Rest
## 593   Rest
## 594   Rest
## 595   Rest
## 596   Rest
## 597   West
## 598   Rest
## 599   Rest
## 600   West
## 601   West
## 602   Rest
## 603   Rest
## 604   Rest
## 605   Rest
## 606   Rest
## 607   Rest
## 608   Rest
## 609   West
## 610   Rest
## 611   Rest
## 612   West
## 613   West
## 614   Rest
## 615   Rest
## 616   Rest
## 617   Rest
## 618   West
## 619   Rest
## 620   West
## 621   West
## 622   Rest
## 623   Rest
## 624   Rest
## 625   Rest
## 626   Rest
## 627   Rest
## 628   Rest
## 629   Rest
## 630   West
## 631   West
## 632   Rest
## 633   Rest
## 634   Rest
## 635   Rest
## 636   West
## 637   Rest
## 638   West
## 639   Rest
## 640   Rest
## 641   Rest
## 642   Rest
## 643   Rest
## 644   Rest
## 645   Rest
## 646   Rest
## 647   Rest
## 648   Rest
## 649   West
## 650   Rest
## 651   Rest
## 652   Rest
## 653   Rest
## 654   West
## 655   West
## 656   Rest
## 657   West
## 658   Rest
## 659   Rest
## 660   Rest
## 661   Rest
## 662   Rest
## 663   West
## 664   Rest
## 665   Rest
## 666   Rest
## 667   Rest
## 668   West
## 669   Rest
## 670   West
## 671   Rest
## 672   Rest
## 673   Rest
## 674   Rest
## 675   West
## 676   Rest
## 677   Rest
## 678   Rest
## 679   Rest
## 680   Rest
## 681   West
## 682   Rest
## 683   Rest
## 684   Rest
## 685   Rest
## 686   Rest
## 687   Rest
## 688   Rest
## 689   West
## 690   West
## 691   Rest
## 692   Rest
## 693   West
## 694   West
## 695   Rest
## 696   Rest
## 697   Rest
## 698   Rest
## 699   Rest
## 700   Rest
## 701   West
## 702   Rest
## 703   Rest
## 704   Rest
## 705   West
## 706   West
## 707   Rest
## 708   Rest
## 709   West
## 710   Rest
## 711   Rest
## 712   Rest
## 713   Rest
## 714   West
## 715   West
## 716   Rest
## 717   Rest
## 718   Rest
## 719   Rest
## 720   Rest
## 721   Rest
## 722   Rest
## 723   Rest
## 724   Rest
## 725   Rest
## 726   Rest
## 727   Rest
## 728   West
## 729   Rest
## 730   West
## 731   West
## 732   Rest
## 733   Rest
## 734   Rest
## 735   Rest
## 736   Rest
## 737   Rest
## 738   Rest
## 739   Rest
## 740   Rest
## 741   West
## 742   Rest
## 743   Rest
## 744   Rest
## 745   Rest
## 746   Rest
## 747   Rest
## 748   Rest
## 749   West
## 750   Rest
## 751   Rest
## 752   Rest
## 753   Rest
## 754   Rest
## 755   West
## 756   West
## 757   Rest
## 758   Rest
## 759   Rest
## 760   Rest
## 761   West
## 762   Rest
## 763   Rest
## 764   Rest
## 765   West
## 766   Rest
## 767   Rest
## 768   Rest
## 769   Rest
## 770   West
## 771   Rest
## 772   Rest
## 773   Rest
## 774   Rest
## 775   Rest
## 776   Rest
## 777   Rest
## 778   Rest
## 779   Rest
## 780   Rest
## 781   Rest
## 782   West
## 783   Rest
## 784   Rest
## 785   West
## 786   West
## 787   Rest
## 788   Rest
## 789   Rest
## 790   Rest
## 791   Rest
## 792   Rest
## 793   Rest
## 794   West
## 795   Rest
## 796   Rest
## 797   West
## 798   West
## 799   Rest
## 800   Rest
## 801   Rest
## 802   Rest
## 803   West
## 804   Rest
## 805   West
## 806   West
## 807   Rest
## 808   Rest
## 809   Rest
## 810   Rest
## 811   Rest
## 812   Rest
## 813   Rest
## 814   Rest
## 815   West
## 816   West
## 817   Rest
## 818   Rest
## 819   Rest
## 820   Rest
## 821   West
## 822   Rest
## 823   West
## 824   Rest
## 825   Rest
## 826   Rest
## 827   Rest
## 828   Rest
## 829   Rest
## 830   Rest
## 831   Rest
## 832   Rest
## 833   Rest
## 834   West
## 835   Rest
## 836   Rest
## 837   Rest
## 838   Rest
## 839   West
## 840   West
## 841   Rest
## 842   West
## 843   Rest
## 844   Rest
## 845   Rest
## 846   Rest
## 847   Rest
## 848   West
## 849   Rest
## 850   Rest
## 851   Rest
## 852   Rest
## 853   West
## 854   Rest
## 855   West
## 856   Rest
## 857   Rest
## 858   Rest
## 859   Rest
## 860   West
## 861   Rest
## 862   Rest
## 863   Rest
## 864   Rest
## 865   Rest
## 866   West
## 867   Rest
## 868   Rest
## 869   Rest
## 870   Rest
## 871   Rest
## 872   Rest
## 873   Rest
## 874   West
## 875   West
## 876   Rest
## 877   Rest
## 878   West
## 879   West
## 880   Rest
## 881   Rest
## 882   Rest
## 883   Rest
## 884   Rest
## 885   Rest
## 886   West
## 887   Rest
## 888   Rest
## 889   Rest
## 890   West
## 891   West
## 892   Rest
## 893   Rest
## 894   West
## 895   Rest
## 896   Rest
## 897   Rest
## 898   Rest
## 899   West
## 900   West
## 901   Rest
## 902   Rest
## 903   Rest
## 904   Rest
## 905   Rest
## 906   Rest
## 907   Rest
## 908   Rest
## 909   Rest
## 910   Rest
## 911   Rest
## 912   Rest
## 913   West
## 914   Rest
## 915   West
## 916   West
## 917   Rest
## 918   Rest
## 919   Rest
## 920   Rest
## 921   Rest
## 922   Rest
## 923   Rest
## 924   Rest
## 925   Rest
## 926   West
## 927   Rest
## 928   Rest
## 929   Rest
## 930   Rest
## 931   Rest
## 932   Rest
## 933   Rest
## 934   West
## 935   Rest
## 936   Rest
## 937   Rest
## 938   Rest
## 939   Rest
## 940   West
## 941   West
## 942   Rest
## 943   Rest
## 944   Rest
## 945   Rest
## 946   West
## 947   Rest
## 948   Rest
## 949   Rest
## 950   West
## 951   Rest
## 952   Rest
## 953   Rest
## 954   Rest
## 955   West
## 956   Rest
## 957   Rest
## 958   Rest
## 959   Rest
## 960   Rest
## 961   Rest
## 962   Rest
## 963   Rest
## 964   Rest
## 965   Rest
## 966   Rest
## 967   West
## 968   Rest
## 969   Rest
## 970   West
## 971   West
## 972   Rest
## 973   Rest
## 974   Rest
## 975   Rest
## 976   Rest
## 977   Rest
## 978   Rest
## 979   West
## 980   Rest
## 981   Rest
## 982   West
## 983   West
## 984   Rest
## 985   Rest
## 986   Rest
## 987   Rest
## 988   West
## 989   Rest
## 990   West
## 991   West
## 992   Rest
## 993   Rest
## 994   Rest
## 995   Rest
## 996   Rest
## 997   Rest
## 998   Rest
## 999   Rest
## 1000  West
## 1001  West
## 1002  Rest
## 1003  Rest
## 1004  Rest
## 1005  Rest
## 1006  West
## 1007  Rest
## 1008  West
## 1009  Rest
## 1010  Rest
## 1011  Rest
## 1012  Rest
## 1013  Rest
## 1014  Rest
## 1015  Rest
## 1016  Rest
## 1017  Rest
## 1018  Rest
## 1019  West
## 1020  Rest
## 1021  Rest
## 1022  Rest
## 1023  Rest
## 1024  West
## 1025  West
## 1026  Rest
## 1027  West
## 1028  Rest
## 1029  Rest
## 1030  Rest
## 1031  Rest
## 1032  Rest
## 1033  West
## 1034  Rest
## 1035  Rest
## 1036  Rest
## 1037  Rest
## 1038  West
## 1039  Rest
## 1040  West
## 1041  Rest
## 1042  Rest
## 1043  Rest
## 1044  Rest
## 1045  West
## 1046  Rest
## 1047  Rest
## 1048  Rest
## 1049  Rest
## 1050  Rest
## 1051  West
## 1052  Rest
## 1053  Rest
## 1054  Rest
## 1055  Rest
## 1056  Rest
## 1057  Rest
## 1058  Rest
## 1059  West
## 1060  West
## 1061  Rest
## 1062  Rest
## 1063  West
## 1064  West
## 1065  Rest
## 1066  Rest
## 1067  Rest
## 1068  Rest
## 1069  Rest
## 1070  Rest
## 1071  West
## 1072  Rest
## 1073  Rest
## 1074  Rest
## 1075  West
## 1076  West
## 1077  Rest
## 1078  Rest
## 1079  West
## 1080  Rest
## 1081  Rest
## 1082  Rest
## 1083  Rest
## 1084  West
## 1085  West
## 1086  Rest
## 1087  Rest
## 1088  Rest
## 1089  Rest
## 1090  Rest
## 1091  Rest
## 1092  Rest
## 1093  Rest
## 1094  Rest
## 1095  Rest
## 1096  Rest
## 1097  Rest
## 1098  West
## 1099  Rest
## 1100  West
## 1101  West
## 1102  Rest
## 1103  Rest
## 1104  Rest
## 1105  Rest
## 1106  Rest
## 1107  Rest
## 1108  Rest
## 1109  Rest
## 1110  Rest
## 1111  West
## 1112  Rest
## 1113  Rest
## 1114  Rest
## 1115  Rest
## 1116  Rest
## 1117  Rest
## 1118  Rest
## 1119  West
## 1120  Rest
## 1121  Rest
## 1122  Rest
## 1123  Rest
## 1124  Rest
## 1125  West
## 1126  West
## 1127  Rest
## 1128  Rest
## 1129  Rest
## 1130  Rest
## 1131  West
## 1132  Rest
## 1133  Rest
## 1134  Rest
## 1135  West
## 1136  Rest
## 1137  Rest
## 1138  Rest
## 1139  Rest
## 1140  West
## 1141  Rest
## 1142  Rest
## 1143  Rest
## 1144  Rest
## 1145  Rest
## 1146  Rest
## 1147  Rest
## 1148  Rest
## 1149  Rest
## 1150  Rest
## 1151  Rest
## 1152  West
## 1153  Rest
## 1154  Rest
## 1155  West
## 1156  West
## 1157  Rest
## 1158  Rest
## 1159  Rest
## 1160  Rest
## 1161  Rest
## 1162  Rest
## 1163  Rest
## 1164  West
## 1165  Rest
## 1166  Rest
## 1167  West
## 1168  West
## 1169  Rest
## 1170  Rest
## 1171  Rest
## 1172  Rest
## 1173  West
## 1174  Rest
## 1175  West
## 1176  West
## 1177  Rest
## 1178  Rest
## 1179  Rest
## 1180  Rest
## 1181  Rest
## 1182  Rest
## 1183  Rest
## 1184  Rest
## 1185  West
## 1186  West
## 1187  Rest
## 1188  Rest
## 1189  Rest
## 1190  Rest
## 1191  West
## 1192  Rest
## 1193  West
## 1194  Rest
## 1195  Rest
## 1196  Rest
## 1197  Rest
## 1198  Rest
## 1199  Rest
## 1200  Rest
## 1201  Rest
## 1202  Rest
## 1203  Rest
## 1204  West
## 1205  Rest
## 1206  Rest
## 1207  Rest
## 1208  Rest
## 1209  West
## 1210  West
## 1211  Rest
## 1212  West
## 1213  Rest
## 1214  Rest
## 1215  Rest
## 1216  Rest
## 1217  Rest
## 1218  West
## 1219  Rest
## 1220  Rest
## 1221  Rest
## 1222  Rest
## 1223  West
## 1224  Rest
## 1225  West
## 1226  Rest
## 1227  Rest
## 1228  Rest
## 1229  Rest
## 1230  West
## 1231  Rest
## 1232  Rest
## 1233  Rest
## 1234  Rest
## 1235  Rest
## 1236  West
## 1237  Rest
## 1238  Rest
## 1239  Rest
## 1240  Rest
## 1241  Rest
## 1242  Rest
## 1243  Rest
## 1244  West
## 1245  West
## 1246  Rest
## 1247  Rest
## 1248  West
## 1249  West
## 1250  Rest
## 1251  Rest
## 1252  Rest
## 1253  Rest
## 1254  Rest
## 1255  Rest
## 1256  West
## 1257  Rest
## 1258  Rest
## 1259  Rest
## 1260  West
## 1261  West
## 1262  Rest
## 1263  Rest
## 1264  West
## 1265  Rest
## 1266  Rest
## 1267  Rest
## 1268  Rest
## 1269  West
## 1270  West
## 1271  Rest
## 1272  Rest
## 1273  Rest
## 1274  Rest
## 1275  Rest
## 1276  Rest
## 1277  Rest
## 1278  Rest
## 1279  Rest
## 1280  Rest
## 1281  Rest
## 1282  Rest
## 1283  West
## 1284  Rest
## 1285  West
## 1286  West
## 1287  Rest
## 1288  Rest
## 1289  Rest
## 1290  Rest
## 1291  Rest
## 1292  Rest
## 1293  Rest
## 1294  Rest
## 1295  Rest
## 1296  West
## 1297  Rest
## 1298  Rest
## 1299  Rest
## 1300  Rest
## 1301  Rest
## 1302  Rest
## 1303  Rest
## 1304  West
## 1305  Rest
## 1306  Rest
## 1307  Rest
## 1308  Rest
## 1309  Rest
## 1310  West
## 1311  West
## 1312  Rest
## 1313  Rest
## 1314  Rest
## 1315  Rest
## 1316  West
## 1317  Rest
## 1318  Rest
## 1319  Rest
## 1320  West
## 1321  Rest
## 1322  Rest
## 1323  Rest
## 1324  Rest
## 1325  West
## 1326  Rest
## 1327  Rest
## 1328  Rest
## 1329  Rest
## 1330  Rest
## 1331  Rest
## 1332  Rest
## 1333  Rest
## 1334  Rest
## 1335  Rest
## 1336  Rest
## 1337  West
## 1338  Rest
## 1339  Rest
## 1340  West
## 1341  West
## 1342  Rest
## 1343  Rest
## 1344  Rest
## 1345  Rest
## 1346  Rest
## 1347  Rest
## 1348  Rest
## 1349  West
## 1350  Rest
## 1351  Rest
## 1352  West
## 1353  West
## 1354  Rest
## 1355  Rest
## 1356  Rest
## 1357  Rest
## 1358  West
## 1359  Rest
## 1360  West
## 1361  West
## 1362  Rest
## 1363  Rest
## 1364  Rest
## 1365  Rest
## 1366  Rest
## 1367  Rest
## 1368  Rest
## 1369  Rest
## 1370  West
## 1371  West
## 1372  Rest
## 1373  Rest
## 1374  Rest
## 1375  Rest
## 1376  West
## 1377  Rest
## 1378  West
## 1379  Rest
## 1380  Rest
## 1381  Rest
## 1382  Rest
## 1383  Rest
## 1384  Rest
## 1385  Rest
## 1386  Rest
## 1387  Rest
## 1388  Rest
## 1389  West
## 1390  Rest
## 1391  Rest
## 1392  Rest
## 1393  Rest
## 1394  West
## 1395  West
## 1396  Rest
## 1397  West
## 1398  Rest
## 1399  Rest
## 1400  Rest
## 1401  Rest
## 1402  Rest
## 1403  West
## 1404  Rest
## 1405  Rest
## 1406  Rest
## 1407  Rest
## 1408  West
## 1409  Rest
## 1410  West
## 1411  Rest
## 1412  Rest
## 1413  Rest
## 1414  Rest
## 1415  West
## 1416  Rest
## 1417  Rest
## 1418  Rest
## 1419  Rest
## 1420  Rest
## 1421  West
## 1422  Rest
## 1423  Rest
## 1424  Rest
## 1425  Rest
## 1426  Rest
## 1427  Rest
## 1428  Rest
## 1429  West
## 1430  West
## 1431  Rest
## 1432  Rest
## 1433  West
## 1434  West
## 1435  Rest
## 1436  Rest
## 1437  Rest
## 1438  Rest
## 1439  Rest
## 1440  Rest
## 1441  West
## 1442  Rest
## 1443  Rest
## 1444  Rest
## 1445  West
## 1446  West
## 1447  Rest
## 1448  Rest
## 1449  West
## 1450  Rest
## 1451  Rest
## 1452  Rest
## 1453  Rest
## 1454  West
## 1455  West
## 1456  Rest
## 1457  Rest
## 1458  Rest
## 1459  Rest
## 1460  Rest
## 1461  Rest
## 1462  Rest
## 1463  Rest
## 1464  Rest
## 1465  Rest
## 1466  Rest
## 1467  Rest
## 1468  West
## 1469  Rest
## 1470  West
## 1471  West
## 1472  Rest
## 1473  Rest
## 1474  Rest
## 1475  Rest
## 1476  Rest
## 1477  Rest
## 1478  Rest
## 1479  Rest
## 1480  Rest
## 1481  West
## 1482  Rest
## 1483  Rest
## 1484  Rest
## 1485  Rest
## 1486  Rest
## 1487  Rest
## 1488  Rest
## 1489  West
## 1490  Rest
## 1491  Rest
## 1492  Rest
## 1493  Rest
## 1494  Rest
## 1495  West
## 1496  West
## 1497  Rest
## 1498  Rest
## 1499  Rest
## 1500  Rest
## 1501  West
## 1502  Rest
## 1503  Rest
## 1504  Rest
## 1505  West
## 1506  Rest
## 1507  Rest
## 1508  Rest
## 1509  Rest
## 1510  West
## 1511  Rest
## 1512  Rest
## 1513  Rest
## 1514  Rest
## 1515  Rest
## 1516  Rest
## 1517  Rest
## 1518  Rest
## 1519  Rest
## 1520  Rest
## 1521  Rest
## 1522  West
## 1523  Rest
## 1524  Rest
## 1525  West
## 1526  West
## 1527  Rest
## 1528  Rest
## 1529  Rest
## 1530  Rest
## 1531  Rest
## 1532  Rest
## 1533  Rest
## 1534  West
## 1535  Rest
## 1536  Rest
## 1537  West
## 1538  West
## 1539  Rest
## 1540  Rest
## 1541  Rest
## 1542  Rest
## 1543  West
## 1544  Rest
## 1545  West
## 1546  West
## 1547  Rest
## 1548  Rest
## 1549  Rest
## 1550  Rest
## 1551  Rest
## 1552  Rest
## 1553  Rest
## 1554  Rest
## 1555  West
## 1556  West
## 1557  Rest
## 1558  Rest
## 1559  Rest
## 1560  Rest
## 1561  West
## 1562  Rest
## 1563  West
## 1564  Rest
## 1565  Rest
## 1566  Rest
## 1567  Rest
## 1568  Rest
## 1569  Rest
## 1570  Rest
## 1571  Rest
## 1572  Rest
## 1573  Rest
## 1574  West
## 1575  Rest
## 1576  Rest
## 1577  Rest
## 1578  Rest
## 1579  West
## 1580  West
## 1581  Rest
## 1582  West
## 1583  Rest
## 1584  Rest
## 1585  Rest
## 1586  Rest
## 1587  Rest
## 1588  West
## 1589  Rest
## 1590  Rest
## 1591  Rest
## 1592  Rest
## 1593  West
## 1594  Rest
## 1595  West
## 1596  Rest
## 1597  Rest
## 1598  Rest
## 1599  Rest
## 1600  West
## 1601  Rest
## 1602  Rest
## 1603  Rest
## 1604  Rest
## 1605  Rest
## 1606  West
## 1607  Rest
## 1608  Rest
## 1609  Rest
## 1610  Rest
## 1611  Rest
## 1612  Rest
## 1613  Rest
## 1614  West
## 1615  West
## 1616  Rest
## 1617  Rest
## 1618  West
## 1619  West
## 1620  Rest
## 1621  Rest
## 1622  Rest
## 1623  Rest
## 1624  Rest
## 1625  Rest
## 1626  West
## 1627  Rest
## 1628  Rest
## 1629  Rest
## 1630  West
## 1631  West
## 1632  Rest
## 1633  Rest
## 1634  West
## 1635  Rest
## 1636  Rest
## 1637  Rest
## 1638  Rest
## 1639  West
## 1640  West
## 1641  Rest
## 1642  Rest
## 1643  Rest
## 1644  Rest
## 1645  Rest
## 1646  Rest
## 1647  Rest
## 1648  Rest
## 1649  Rest
## 1650  Rest
## 1651  Rest
## 1652  Rest
## 1653  West
## 1654  Rest
## 1655  West
## 1656  West
## 1657  Rest
## 1658  Rest
## 1659  Rest
## 1660  Rest
## 1661  Rest
## 1662  Rest
## 1663  Rest
## 1664  Rest
## 1665  Rest
## 1666  West
## 1667  Rest
## 1668  Rest
## 1669  Rest
## 1670  Rest
## 1671  Rest
## 1672  Rest
## 1673  Rest
## 1674  West
## 1675  Rest
## 1676  Rest
## 1677  Rest
## 1678  Rest
## 1679  Rest
## 1680  West
## 1681  West
## 1682  Rest
## 1683  Rest
## 1684  Rest
## 1685  Rest
## 1686  West
## 1687  Rest
## 1688  Rest
## 1689  Rest
## 1690  West
## 1691  Rest
## 1692  Rest
## 1693  Rest
## 1694  Rest
## 1695  West
## 1696  Rest
## 1697  Rest
## 1698  Rest
## 1699  Rest
## 1700  Rest
## 1701  Rest
## 1702  Rest
## 1703  Rest
## 1704  Rest
## 1705  Rest
## 1706  Rest
## 1707  West
## 1708  Rest
## 1709  Rest
## 1710  West
## 1711  West
## 1712  Rest
## 1713  Rest
## 1714  Rest
## 1715  Rest
## 1716  Rest
## 1717  Rest
## 1718  Rest
## 1719  West
## 1720  Rest
## 1721  Rest
## 1722  West
## 1723  West
## 1724  Rest
## 1725  Rest
## 1726  Rest
## 1727  Rest
## 1728  West
## 1729  Rest
## 1730  West
## 1731  West
## 1732  Rest
## 1733  Rest
## 1734  Rest
## 1735  Rest
## 1736  Rest
## 1737  Rest
## 1738  Rest
## 1739  Rest
## 1740  West
## 1741  West
## 1742  Rest
## 1743  Rest
## 1744  Rest
## 1745  Rest
## 1746  West
## 1747  Rest
## 1748  West
## 1749  Rest
## 1750  Rest
## 1751  Rest
## 1752  Rest
## 1753  Rest
## 1754  Rest
## 1755  Rest
## 1756  Rest
## 1757  Rest
## 1758  Rest
## 1759  West
## 1760  Rest
## 1761  Rest
## 1762  Rest
## 1763  Rest
## 1764  West
## 1765  West
## 1766  Rest
## 1767  West
## 1768  Rest
## 1769  Rest
## 1770  Rest
## 1771  Rest
## 1772  Rest
## 1773  West
## 1774  Rest
## 1775  Rest
## 1776  Rest
## 1777  Rest
## 1778  West
## 1779  Rest
## 1780  West
## 1781  Rest
## 1782  Rest
## 1783  Rest
## 1784  Rest
## 1785  West
## 1786  Rest
## 1787  Rest
## 1788  Rest
## 1789  Rest
## 1790  Rest
## 1791  West
## 1792  Rest
## 1793  Rest
## 1794  Rest
## 1795  Rest
## 1796  Rest
## 1797  Rest
## 1798  Rest
## 1799  West
## 1800  West
## 1801  Rest
## 1802  Rest
## 1803  West
## 1804  West
## 1805  Rest
## 1806  Rest
## 1807  Rest
## 1808  Rest
## 1809  Rest
## 1810  Rest
## 1811  West
## 1812  Rest
## 1813  Rest
## 1814  Rest
## 1815  West
## 1816  West
## 1817  Rest
## 1818  Rest
## 1819  West
## 1820  Rest
## 1821  Rest
## 1822  Rest
## 1823  Rest
## 1824  West
## 1825  West
## 1826  Rest
## 1827  Rest
## 1828  Rest
## 1829  Rest
## 1830  Rest
## 1831  Rest
## 1832  Rest
## 1833  Rest
## 1834  Rest
## 1835  Rest
## 1836  Rest
## 1837  Rest
## 1838  West
## 1839  Rest
## 1840  West
## 1841  West
## 1842  Rest
## 1843  Rest
## 1844  Rest
## 1845  Rest
## 1846  Rest
## 1847  Rest
## 1848  Rest
## 1849  Rest
## 1850  Rest
## 1851  West
## 1852  Rest
## 1853  Rest
## 1854  Rest
## 1855  Rest
## 1856  Rest
## 1857  Rest
## 1858  Rest
## 1859  West
## 1860  Rest
## 1861  Rest
## 1862  Rest
## 1863  Rest
## 1864  Rest
## 1865  West
## 1866  West
## 1867  Rest
## 1868  Rest
## 1869  Rest
## 1870  Rest
## 1871  West
## 1872  Rest
## 1873  Rest
## 1874  Rest
## 1875  West
## 1876  Rest
## 1877  Rest
## 1878  Rest
## 1879  Rest
## 1880  West
## 1881  Rest
## 1882  Rest
## 1883  Rest
## 1884  Rest
## 1885  Rest
## 1886  Rest
## 1887  Rest
## 1888  Rest
## 1889  Rest
## 1890  Rest
## 1891  Rest
## 1892  West
## 1893  Rest
## 1894  Rest
## 1895  West
## 1896  West
## 1897  Rest
## 1898  Rest
## 1899  Rest
## 1900  Rest
## 1901  Rest
## 1902  Rest
## 1903  Rest
## 1904  West
## 1905  Rest
## 1906  Rest
## 1907  West
## 1908  West
## 1909  Rest
## 1910  Rest
## 1911  Rest
## 1912  Rest
## 1913  West
## 1914  Rest
## 1915  West
## 1916  West
## 1917  Rest
## 1918  Rest
## 1919  Rest
## 1920  Rest
## 1921  Rest
## 1922  Rest
## 1923  Rest
## 1924  Rest
## 1925  West
## 1926  West
## 1927  Rest
## 1928  Rest
## 1929  Rest
## 1930  Rest
## 1931  West
## 1932  Rest
## 1933  West
## 1934  Rest
## 1935  Rest
## 1936  Rest
## 1937  Rest
## 1938  Rest
## 1939  Rest
## 1940  Rest
## 1941  Rest
## 1942  Rest
## 1943  Rest
## 1944  West
## 1945  Rest
## 1946  Rest
## 1947  Rest
## 1948  Rest
## 1949  West
## 1950  West
## 1951  Rest
## 1952  West
## 1953  Rest
## 1954  Rest
## 1955  Rest
## 1956  Rest
## 1957  Rest
## 1958  West
## 1959  Rest
## 1960  Rest
## 1961  Rest
## 1962  Rest
## 1963  West
## 1964  Rest
## 1965  West
## 1966  Rest
## 1967  Rest
## 1968  Rest
## 1969  Rest
## 1970  West
## 1971  Rest
## 1972  Rest
## 1973  Rest
## 1974  Rest
## 1975  Rest
## 1976  West
## 1977  Rest
## 1978  Rest
## 1979  Rest
## 1980  Rest
## 1981  Rest
## 1982  Rest
## 1983  Rest
## 1984  West
## 1985  West
## 1986  Rest
## 1987  Rest
## 1988  West
## 1989  West
## 1990  Rest
## 1991  Rest
## 1992  Rest
## 1993  Rest
## 1994  Rest
## 1995  Rest
## 1996  West
## 1997  Rest
## 1998  Rest
## 1999  Rest
## 2000  West
## 2001  West
## 2002  Rest
## 2003  Rest
## 2004  West
## 2005  Rest
## 2006  Rest
## 2007  Rest
## 2008  Rest
## 2009  West
## 2010  West
## 2011  Rest
## 2012  Rest
## 2013  Rest
## 2014  Rest
## 2015  Rest
## 2016  Rest
## 2017  Rest
## 2018  Rest
## 2019  Rest
## 2020  Rest
## 2021  Rest
## 2022  Rest
## 2023  West
## 2024  Rest
## 2025  West
## 2026  West
## 2027  Rest
## 2028  Rest
## 2029  Rest
## 2030  Rest
## 2031  Rest
## 2032  Rest
## 2033  Rest
## 2034  Rest
## 2035  Rest
## 2036  West
## 2037  Rest
## 2038  Rest
## 2039  Rest
## 2040  Rest
## 2041  Rest
## 2042  Rest
## 2043  Rest
## 2044  West
## 2045  Rest
## 2046  Rest
## 2047  Rest
## 2048  Rest
## 2049  Rest
## 2050  West
## 2051  West
## 2052  Rest
## 2053  Rest
## 2054  Rest
## 2055  Rest
## 2056  West
## 2057  Rest
## 2058  Rest
## 2059  Rest
## 2060  West
## 2061  Rest
## 2062  Rest
## 2063  Rest
## 2064  Rest
## 2065  West
## 2066  Rest
## 2067  Rest
## 2068  Rest
## 2069  Rest
## 2070  Rest
## 2071  Rest
## 2072  Rest
## 2073  Rest
## 2074  Rest
## 2075  Rest
## 2076  Rest
## 2077  West
## 2078  Rest
## 2079  Rest
## 2080  West
## 2081  West
## 2082  Rest
## 2083  Rest
## 2084  Rest
## 2085  Rest
## 2086  Rest
## 2087  Rest
## 2088  Rest
## 2089  West
## 2090  Rest
## 2091  Rest
## 2092  West
## 2093  West
## 2094  Rest
## 2095  Rest
## 2096  Rest
## 2097  Rest
## 2098  West
## 2099  Rest
## 2100  West
## 2101  West
## 2102  Rest
## 2103  Rest
## 2104  Rest
## 2105  Rest
## 2106  Rest
## 2107  Rest
## 2108  Rest
## 2109  Rest
## 2110  West
## 2111  West
## 2112  Rest
## 2113  Rest
## 2114  Rest
## 2115  Rest
## 2116  West
## 2117  Rest
## 2118  West
## 2119  Rest
## 2120  Rest
## 2121  Rest
## 2122  Rest
## 2123  Rest
## 2124  Rest
## 2125  Rest
## 2126  Rest
## 2127  Rest
## 2128  Rest
## 2129  West
## 2130  Rest
## 2131  Rest
## 2132  Rest
## 2133  Rest
## 2134  West
## 2135  West
## 2136  Rest
## 2137  West
## 2138  Rest
## 2139  Rest
## 2140  Rest
## 2141  Rest
## 2142  Rest
## 2143  West
## 2144  Rest
## 2145  Rest
## 2146  Rest
## 2147  Rest
## 2148  West
## 2149  Rest
## 2150  West
## 2151  Rest
## 2152  Rest
## 2153  Rest
## 2154  Rest
## 2155  West
## 2156  Rest
## 2157  Rest
## 2158  Rest
## 2159  Rest
## 2160  Rest
## 2161  West
## 2162  Rest
## 2163  Rest
## 2164  Rest
## 2165  Rest
## 2166  Rest
## 2167  Rest
## 2168  Rest
## 2169  West
## 2170  West
## 2171  Rest
## 2172  Rest
## 2173  West
## 2174  West
## 2175  Rest
## 2176  Rest
## 2177  Rest
## 2178  Rest
## 2179  Rest
## 2180  Rest
## 2181  West
## 2182  Rest
## 2183  Rest
## 2184  Rest
## 2185  West
## 2186  West
## 2187  Rest
## 2188  Rest
## 2189  West
## 2190  Rest
## 2191  Rest
## 2192  Rest
## 2193  Rest
## 2194  West
## 2195  West
## 2196  Rest
## 2197  Rest
## 2198  Rest
## 2199  Rest
## 2200  Rest
## 2201  Rest
## 2202  Rest
## 2203  Rest
## 2204  Rest
## 2205  Rest
## 2206  Rest
## 2207  Rest
## 2208  West
## 2209  Rest
## 2210  West
## 2211  West
## 2212  Rest
## 2213  Rest
## 2214  Rest
## 2215  Rest
## 2216  Rest
## 2217  Rest
## 2218  Rest
## 2219  Rest
## 2220  Rest
## 2221  West
## 2222  Rest
## 2223  Rest
## 2224  Rest
## 2225  Rest
## 2226  Rest
## 2227  Rest
## 2228  Rest
## 2229  West
## 2230  Rest
## 2231  Rest
## 2232  Rest
## 2233  Rest
## 2234  Rest
## 2235  West
## 2236  West
## 2237  Rest
## 2238  Rest
## 2239  Rest
## 2240  Rest
## 2241  West
## 2242  Rest
## 2243  Rest
## 2244  Rest
## 2245  West
## 2246  Rest
## 2247  Rest
## 2248  Rest
## 2249  Rest
## 2250  West
## 2251  Rest
## 2252  Rest
## 2253  Rest
## 2254  Rest
## 2255  Rest
## 2256  Rest
## 2257  Rest
## 2258  Rest
## 2259  Rest
## 2260  Rest
## 2261  Rest
## 2262  West
## 2263  Rest
## 2264  Rest
## 2265  West
## 2266  West
## 2267  Rest
## 2268  Rest
## 2269  Rest
## 2270  Rest
## 2271  Rest
## 2272  Rest
## 2273  Rest
## 2274  West
## 2275  Rest
## 2276  Rest
## 2277  West
## 2278  West
## 2279  Rest
## 2280  Rest
## 2281  Rest
## 2282  Rest
## 2283  West
## 2284  Rest
## 2285  West
## 2286  West
## 2287  Rest
## 2288  Rest
## 2289  Rest
## 2290  Rest
## 2291  Rest
## 2292  Rest
## 2293  Rest
## 2294  Rest
## 2295  West
## 2296  West
## 2297  Rest
## 2298  Rest
## 2299  Rest
## 2300  Rest
## 2301  West
## 2302  Rest
## 2303  West
## 2304  Rest
## 2305  Rest
## 2306  Rest
## 2307  Rest
## 2308  Rest
## 2309  Rest
## 2310  Rest
## 2311  Rest
## 2312  Rest
## 2313  Rest
## 2314  West
## 2315  Rest
## 2316  Rest
## 2317  Rest
## 2318  Rest
## 2319  West
## 2320  West
## 2321  Rest
## 2322  West
## 2323  Rest
## 2324  Rest
## 2325  Rest
## 2326  Rest
## 2327  Rest
## 2328  West
## 2329  Rest
## 2330  Rest
## 2331  Rest
## 2332  Rest
## 2333  West
## 2334  Rest
## 2335  West
## 2336  Rest
## 2337  Rest
## 2338  Rest
## 2339  Rest
## 2340  West
## 2341  Rest
## 2342  Rest
## 2343  Rest
## 2344  Rest
## 2345  Rest
## 2346  West
## 2347  Rest
## 2348  Rest
## 2349  Rest
## 2350  Rest
## 2351  Rest
## 2352  Rest
## 2353  Rest
## 2354  West
## 2355  West
## 2356  Rest
## 2357  Rest
## 2358  West
## 2359  West
## 2360  Rest
## 2361  Rest
## 2362  Rest
## 2363  Rest
## 2364  Rest
## 2365  Rest
## 2366  West
## 2367  Rest
## 2368  Rest
## 2369  Rest
## 2370  West
## 2371  West
## 2372  Rest
## 2373  Rest
## 2374  West
## 2375  Rest
## 2376  Rest
## 2377  Rest
## 2378  Rest
## 2379  West
## 2380  West
## 2381  Rest
## 2382  Rest
## 2383  Rest
## 2384  Rest
## 2385  Rest
## 2386  Rest
## 2387  Rest
## 2388  Rest
## 2389  Rest
## 2390  Rest
## 2391  Rest
## 2392  Rest
## 2393  West
## 2394  Rest
## 2395  West
## 2396  West
## 2397  Rest
## 2398  Rest
## 2399  Rest
## 2400  Rest
## 2401  Rest
## 2402  Rest
## 2403  Rest
## 2404  Rest
## 2405  Rest
## 2406  West
## 2407  Rest
## 2408  Rest
## 2409  Rest
## 2410  Rest
## 2411  Rest
## 2412  Rest
## 2413  Rest
## 2414  West
## 2415  Rest
## 2416  Rest
## 2417  Rest
## 2418  Rest
## 2419  Rest
## 2420  West
## 2421  West
## 2422  Rest
## 2423  Rest
## 2424  Rest
## 2425  Rest
## 2426  West
## 2427  Rest
## 2428  Rest
## 2429  Rest
## 2430  West
## 2431  Rest
## 2432  Rest
## 2433  Rest
## 2434  Rest
## 2435  West
## 2436  Rest
## 2437  Rest
## 2438  Rest
## 2439  Rest
## 2440  Rest
## 2441  Rest
## 2442  Rest
## 2443  Rest
## 2444  Rest
## 2445  Rest
## 2446  Rest
## 2447  West
## 2448  Rest
## 2449  Rest
## 2450  West
## 2451  West
## 2452  Rest
## 2453  Rest
## 2454  Rest
## 2455  Rest
## 2456  Rest
## 2457  Rest
## 2458  Rest
## 2459  West
## 2460  Rest
## 2461  Rest
## 2462  West
## 2463  West
## 2464  Rest
## 2465  Rest
## 2466  Rest
## 2467  Rest
## 2468  West
## 2469  Rest
## 2470  West
## 2471  West
## 2472  Rest
## 2473  Rest
## 2474  Rest
## 2475  Rest
## 2476  Rest
## 2477  Rest
## 2478  Rest
## 2479  Rest
## 2480  West
## 2481  West
## 2482  Rest
## 2483  Rest
## 2484  Rest
## 2485  Rest
## 2486  West
## 2487  Rest
## 2488  West
## 2489  Rest
## 2490  Rest
## 2491  Rest
## 2492  Rest
## 2493  Rest
## 2494  Rest
## 2495  Rest
## 2496  Rest
## 2497  Rest
## 2498  Rest
## 2499  West
## 2500  Rest
## 2501  Rest
## 2502  Rest
## 2503  Rest
## 2504  West
## 2505  West
## 2506  Rest
## 2507  West
## 2508  Rest
## 2509  Rest
## 2510  Rest
## 2511  Rest
## 2512  Rest
## 2513  West
## 2514  Rest
## 2515  Rest
## 2516  Rest
## 2517  Rest
## 2518  West
## 2519  Rest
## 2520  West
## 2521  Rest
## 2522  Rest
## 2523  Rest
## 2524  Rest
## 2525  West
## 2526  Rest
## 2527  Rest
## 2528  Rest
## 2529  Rest
## 2530  Rest
## 2531  West
## 2532  Rest
## 2533  Rest
## 2534  Rest
## 2535  Rest
## 2536  Rest
## 2537  Rest
## 2538  Rest
## 2539  West
## 2540  West
## 2541  Rest
## 2542  Rest
## 2543  West
## 2544  West
## 2545  Rest
## 2546  Rest
## 2547  Rest
## 2548  Rest
## 2549  Rest
## 2550  Rest
## 2551  West
## 2552  Rest
## 2553  Rest
## 2554  Rest
## 2555  West
## 2556  West
## 2557  Rest
## 2558  Rest
## 2559  West
## 2560  Rest
## 2561  Rest
## 2562  Rest
## 2563  Rest
## 2564  West
## 2565  West
## 2566  Rest
## 2567  Rest
## 2568  Rest
## 2569  Rest
## 2570  Rest
## 2571  Rest
## 2572  Rest
## 2573  Rest
## 2574  Rest
## 2575  Rest
## 2576  Rest
## 2577  Rest
## 2578  West
## 2579  Rest
## 2580  West
## 2581  West
## 2582  Rest
## 2583  Rest
## 2584  Rest
## 2585  Rest
## 2586  Rest
## 2587  Rest
## 2588  Rest
## 2589  Rest
## 2590  Rest
## 2591  West
## 2592  Rest
## 2593  Rest
## 2594  Rest
## 2595  Rest
## 2596  Rest
## 2597  Rest
## 2598  Rest
## 2599  West
## 2600  Rest
## 2601  Rest
## 2602  Rest
## 2603  Rest
## 2604  Rest
## 2605  West
## 2606  West
## 2607  Rest
## 2608  Rest
## 2609  Rest
## 2610  Rest
## 2611  West
## 2612  Rest
## 2613  Rest
## 2614  Rest
## 2615  West
## 2616  Rest
## 2617  Rest
## 2618  Rest
## 2619  Rest
## 2620  West
## 2621  Rest
## 2622  Rest
## 2623  Rest
## 2624  Rest
## 2625  Rest
## 2626  Rest
## 2627  Rest
## 2628  Rest
## 2629  Rest
## 2630  Rest
## 2631  Rest
## 2632  West
## 2633  Rest
## 2634  Rest
## 2635  West
## 2636  West
## 2637  Rest
## 2638  Rest
## 2639  Rest
## 2640  Rest
## 2641  Rest
## 2642  Rest
## 2643  Rest
## 2644  West
## 2645  Rest
## 2646  Rest
## 2647  West
## 2648  West
## 2649  Rest
## 2650  Rest
## 2651  Rest
## 2652  Rest
## 2653  West
## 2654  Rest
## 2655  West
## 2656  West
## 2657  Rest
## 2658  Rest
## 2659  Rest
## 2660  Rest
## 2661  Rest
## 2662  Rest
## 2663  Rest
## 2664  Rest
## 2665  West
## 2666  West
## 2667  Rest
## 2668  Rest
## 2669  Rest
## 2670  Rest
## 2671  West
## 2672  Rest
## 2673  West
## 2674  Rest
## 2675  Rest
## 2676  Rest
## 2677  Rest
## 2678  Rest
## 2679  Rest
## 2680  Rest
## 2681  Rest
## 2682  Rest
## 2683  Rest
## 2684  West
## 2685  Rest
## 2686  Rest
## 2687  Rest
## 2688  Rest
## 2689  West
## 2690  West
## 2691  Rest
## 2692  West
## 2693  Rest
## 2694  Rest
## 2695  Rest
## 2696  Rest
## 2697  Rest
## 2698  West
## 2699  Rest
## 2700  Rest
## 2701  Rest
## 2702  Rest
## 2703  West
## 2704  Rest
## 2705  West
## 2706  Rest
## 2707  Rest
## 2708  Rest
## 2709  Rest
## 2710  West
## 2711  Rest
## 2712  Rest
## 2713  Rest
## 2714  Rest
## 2715  Rest
## 2716  West
## 2717  Rest
## 2718  Rest
## 2719  Rest
## 2720  Rest
## 2721  Rest
## 2722  Rest
## 2723  Rest
## 2724  West
## 2725  West
## 2726  Rest
## 2727  Rest
## 2728  West
## 2729  West
## 2730  Rest
## 2731  Rest
## 2732  Rest
## 2733  Rest
## 2734  Rest
## 2735  Rest
## 2736  West
## 2737  Rest
## 2738  Rest
## 2739  Rest
## 2740  West
## 2741  West
## 2742  Rest
## 2743  Rest
## 2744  West
## 2745  Rest
## 2746  Rest
## 2747  Rest
## 2748  Rest
## 2749  West
## 2750  West
## 2751  Rest
## 2752  Rest
## 2753  Rest
## 2754  Rest
## 2755  Rest
## 2756  Rest
## 2757  Rest
## 2758  Rest
## 2759  Rest
## 2760  Rest
## 2761  Rest
## 2762  Rest
## 2763  West
## 2764  Rest
## 2765  West
## 2766  West
## 2767  Rest
## 2768  Rest
## 2769  Rest
## 2770  Rest
## 2771  Rest
## 2772  Rest
## 2773  Rest
## 2774  Rest
## 2775  Rest
## 2776  West
## 2777  Rest
## 2778  Rest
## 2779  Rest
## 2780  Rest
## 2781  Rest
## 2782  Rest
## 2783  Rest
## 2784  West
## 2785  Rest
## 2786  Rest
## 2787  Rest
## 2788  Rest
## 2789  Rest
## 2790  West
## 2791  West
## 2792  Rest
## 2793  Rest
## 2794  Rest
## 2795  Rest
## 2796  West
## 2797  Rest
## 2798  Rest
## 2799  Rest
## 2800  West
## 2801  Rest
## 2802  Rest
## 2803  Rest
## 2804  Rest
## 2805  West
## 2806  Rest
## 2807  Rest
## 2808  Rest
## 2809  Rest
## 2810  Rest
## 2811  Rest
## 2812  Rest
## 2813  Rest
## 2814  Rest
## 2815  Rest
## 2816  Rest
## 2817  West
## 2818  Rest
## 2819  Rest
## 2820  West
## 2821  West
## 2822  Rest
## 2823  Rest
## 2824  Rest
## 2825  Rest
## 2826  Rest
## 2827  Rest
## 2828  Rest
## 2829  West
## 2830  Rest
## 2831  Rest
## 2832  West
## 2833  West
## 2834  Rest
## 2835  Rest
## 2836  Rest
## 2837  Rest
## 2838  West
## 2839  Rest
## 2840  West
## 2841  West
## 2842  Rest
## 2843  Rest
## 2844  Rest
## 2845  Rest
## 2846  Rest
## 2847  Rest
## 2848  Rest
## 2849  Rest
## 2850  West
## 2851  West
## 2852  Rest
## 2853  Rest
## 2854  Rest
## 2855  Rest
## 2856  West
## 2857  Rest
## 2858  West
## 2859  Rest
## 2860  Rest
## 2861  Rest
## 2862  Rest
## 2863  Rest
## 2864  Rest
## 2865  Rest
## 2866  Rest
## 2867  Rest
## 2868  Rest
## 2869  West
## 2870  Rest
## 2871  Rest
## 2872  Rest
## 2873  Rest
## 2874  West
## 2875  West
## 2876  Rest
## 2877  West
## 2878  Rest
## 2879  Rest
## 2880  Rest
## 2881  Rest
## 2882  Rest
## 2883  West
## 2884  Rest
## 2885  Rest
## 2886  Rest
## 2887  Rest
## 2888  West
## 2889  Rest
## 2890  West
## 2891  Rest
## 2892  Rest
## 2893  Rest
## 2894  Rest
## 2895  West
## 2896  Rest
## 2897  Rest
## 2898  Rest
## 2899  Rest
## 2900  Rest
## 2901  West
## 2902  Rest
## 2903  Rest
## 2904  Rest
## 2905  Rest
## 2906  Rest
## 2907  Rest
## 2908  Rest
## 2909  West
## 2910  West
## 2911  Rest
## 2912  Rest
## 2913  West
## 2914  West
## 2915  Rest
## 2916  Rest
## 2917  Rest
## 2918  Rest
## 2919  Rest
## 2920  Rest
## 2921  West
## 2922  Rest
## 2923  Rest
## 2924  Rest
## 2925  West
## 2926  West
## 2927  Rest
## 2928  Rest
## 2929  West
## 2930  Rest
## 2931  Rest
## 2932  Rest
## 2933  Rest
## 2934  West
## 2935  West
## 2936  Rest
## 2937  Rest
## 2938  Rest
## 2939  Rest
## 2940  Rest
## 2941  Rest
## 2942  Rest
## 2943  Rest
## 2944  Rest
## 2945  Rest
## 2946  Rest
## 2947  Rest
## 2948  West
## 2949  Rest
## 2950  West
## 2951  West
## 2952  Rest
## 2953  Rest
## 2954  Rest
## 2955  Rest
## 2956  Rest
## 2957  Rest
## 2958  Rest
## 2959  Rest
## 2960  Rest
## 2961  West
## 2962  Rest
## 2963  Rest
## 2964  Rest
## 2965  Rest
## 2966  Rest
## 2967  Rest
## 2968  Rest
## 2969  West
## 2970  Rest
## 2971  Rest
## 2972  Rest
## 2973  Rest
## 2974  Rest
## 2975  West
## 2976  West
## 2977  Rest
## 2978  Rest
## 2979  Rest
## 2980  Rest
## 2981  West
## 2982  Rest
## 2983  Rest
## 2984  Rest
## 2985  West
## 2986  Rest
## 2987  Rest
## 2988  Rest
## 2989  Rest
## 2990  West
## 2991  Rest
## 2992  Rest
## 2993  Rest
## 2994  Rest
## 2995  Rest
## 2996  Rest
## 2997  Rest
## 2998  Rest
## 2999  Rest
## 3000  Rest
## 3001  Rest
## 3002  West
## 3003  Rest
## 3004  Rest
## 3005  West
## 3006  West
## 3007  Rest
## 3008  Rest
## 3009  Rest
## 3010  Rest
## 3011  Rest
## 3012  Rest
## 3013  Rest
## 3014  West
## 3015  Rest
## 3016  Rest
## 3017  West
## 3018  West
## 3019  Rest
## 3020  Rest
## 3021  Rest
## 3022  Rest
## 3023  West
## 3024  Rest
## 3025  West
## 3026  West
## 3027  Rest
## 3028  Rest
## 3029  Rest
## 3030  Rest
## 3031  Rest
## 3032  Rest
## 3033  Rest
## 3034  Rest
## 3035  West
## 3036  West
## 3037  Rest
## 3038  Rest
## 3039  Rest
## 3040  Rest
## 3041  West
## 3042  Rest
## 3043  West
## 3044  Rest
## 3045  Rest
## 3046  Rest
## 3047  Rest
## 3048  Rest
## 3049  Rest
## 3050  Rest
## 3051  Rest
## 3052  Rest
## 3053  Rest
## 3054  West
## 3055  Rest
## 3056  Rest
## 3057  Rest
## 3058  Rest
## 3059  West
## 3060  West
## 3061  Rest
## 3062  West
## 3063  Rest
## 3064  Rest
## 3065  Rest
## 3066  Rest
## 3067  Rest
## 3068  West
## 3069  Rest
## 3070  Rest
## 3071  Rest
## 3072  Rest
## 3073  West
## 3074  Rest
## 3075  West
## 3076  Rest
## 3077  Rest
## 3078  Rest
## 3079  Rest
## 3080  West
## 3081  Rest
## 3082  Rest
## 3083  Rest
## 3084  Rest
## 3085  Rest
## 3086  West
## 3087  Rest
## 3088  Rest
## 3089  Rest
## 3090  Rest
## 3091  Rest
## 3092  Rest
## 3093  Rest
## 3094  West
## 3095  West
## 3096  Rest
## 3097  Rest
## 3098  West
## 3099  West
## 3100  Rest
## 3101  Rest
## 3102  Rest
## 3103  Rest
## 3104  Rest
## 3105  Rest
## 3106  West
## 3107  Rest
## 3108  Rest
## 3109  Rest
## 3110  West
## 3111  West
## 3112  Rest
## 3113  Rest
## 3114  West
## 3115  Rest
## 3116  Rest
## 3117  Rest
## 3118  Rest
## 3119  West
## 3120  West
## 3121  Rest
## 3122  Rest
## 3123  Rest
## 3124  Rest
## 3125  Rest
## 3126  Rest
## 3127  Rest
## 3128  Rest
## 3129  Rest
## 3130  Rest
## 3131  Rest
## 3132  Rest
## 3133  West
## 3134  Rest
## 3135  West
## 3136  West
## 3137  Rest
## 3138  Rest
## 3139  Rest
## 3140  Rest
## 3141  Rest
## 3142  Rest
## 3143  Rest
## 3144  Rest
## 3145  Rest
## 3146  West
## 3147  Rest
## 3148  Rest
## 3149  Rest
## 3150  Rest
## 3151  Rest
## 3152  Rest
## 3153  Rest
## 3154  West
## 3155  Rest
## 3156  Rest
## 3157  Rest
## 3158  Rest
## 3159  Rest
## 3160  West
## 3161  West
## 3162  Rest
## 3163  Rest
## 3164  Rest
## 3165  Rest
## 3166  West
## 3167  Rest
## 3168  Rest
## 3169  Rest
## 3170  West
## 3171  Rest
## 3172  Rest
## 3173  Rest
## 3174  Rest
## 3175  West
## 3176  Rest
## 3177  Rest
## 3178  Rest
## 3179  Rest
## 3180  Rest
## 3181  Rest
## 3182  Rest
## 3183  Rest
## 3184  Rest
## 3185  Rest
## 3186  Rest
## 3187  West
## 3188  Rest
## 3189  Rest
## 3190  West
## 3191  West
## 3192  Rest
## 3193  Rest
## 3194  Rest
## 3195  Rest
## 3196  Rest
## 3197  Rest
## 3198  Rest
## 3199  West
## 3200  Rest
## 3201  Rest
## 3202  West
## 3203  West
## 3204  Rest
## 3205  Rest
## 3206  Rest
## 3207  Rest
## 3208  West
## 3209  Rest
## 3210  West
## 3211  West
## 3212  Rest
## 3213  Rest
## 3214  Rest
## 3215  Rest
## 3216  Rest
## 3217  Rest
## 3218  Rest
## 3219  Rest
## 3220  West
## 3221  West
## 3222  Rest
## 3223  Rest
## 3224  Rest
## 3225  Rest
## 3226  West
## 3227  Rest
## 3228  West
## 3229  Rest
## 3230  Rest
## 3231  Rest
## 3232  Rest
## 3233  Rest
## 3234  Rest
## 3235  Rest
## 3236  Rest
## 3237  Rest
## 3238  Rest
## 3239  West
## 3240  Rest
## 3241  Rest
## 3242  Rest
## 3243  Rest
## 3244  West
## 3245  West
## 3246  Rest
## 3247  West
## 3248  Rest
## 3249  Rest
## 3250  Rest
## 3251  Rest
## 3252  Rest
## 3253  West
## 3254  Rest
## 3255  Rest
## 3256  Rest
## 3257  Rest
## 3258  West
## 3259  Rest
## 3260  West
## 3261  Rest
## 3262  Rest
## 3263  Rest
## 3264  Rest
## 3265  West
## 3266  Rest
## 3267  Rest
## 3268  Rest
## 3269  Rest
## 3270  Rest
## 3271  West
## 3272  Rest
## 3273  Rest
## 3274  Rest
## 3275  Rest
## 3276  Rest
## 3277  Rest
## 3278  Rest
## 3279  West
## 3280  West
## 3281  Rest
## 3282  Rest
## 3283  West
## 3284  West
## 3285  Rest
## 3286  Rest
## 3287  Rest
## 3288  Rest
## 3289  Rest
## 3290  Rest
## 3291  West
## 3292  Rest
## 3293  Rest
## 3294  Rest
## 3295  West
## 3296  West
## 3297  Rest
## 3298  Rest
## 3299  West
## 3300  Rest
## 3301  Rest
## 3302  Rest
## 3303  Rest
## 3304  West
## 3305  West
## 3306  Rest
## 3307  Rest
## 3308  Rest
## 3309  Rest
## 3310  Rest
## 3311  Rest
## 3312  Rest
## 3313  Rest
## 3314  Rest
## 3315  Rest
## 3316  Rest
## 3317  Rest
## 3318  West
## 3319  Rest
## 3320  West
## 3321  West
## 3322  Rest
## 3323  Rest
## 3324  Rest
## 3325  Rest
## 3326  Rest
## 3327  Rest
## 3328  Rest
## 3329  Rest
## 3330  Rest
## 3331  West
## 3332  Rest
## 3333  Rest
## 3334  Rest
## 3335  Rest
## 3336  Rest
## 3337  Rest
## 3338  Rest
## 3339  West
## 3340  Rest
## 3341  Rest
## 3342  Rest
## 3343  Rest
## 3344  Rest
## 3345  West
## 3346  West
## 3347  Rest
## 3348  Rest
## 3349  Rest
## 3350  Rest
## 3351  West
## 3352  Rest
## 3353  Rest
## 3354  Rest
## 3355  West
## 3356  Rest
## 3357  Rest
## 3358  Rest
## 3359  Rest
## 3360  West
## 3361  Rest
## 3362  Rest
## 3363  Rest
## 3364  Rest
## 3365  Rest
## 3366  Rest
## 3367  Rest
## 3368  Rest
## 3369  Rest
## 3370  Rest
## 3371  Rest
## 3372  West
## 3373  Rest
## 3374  Rest
## 3375  West
## 3376  West
## 3377  Rest
## 3378  Rest
## 3379  Rest
## 3380  Rest
## 3381  Rest
## 3382  Rest
## 3383  Rest
## 3384  West
## 3385  Rest
## 3386  Rest
## 3387  West
## 3388  West
## 3389  Rest
## 3390  Rest
## 3391  Rest
## 3392  Rest
## 3393  West
## 3394  Rest
## 3395  West
## 3396  West
## 3397  Rest
## 3398  Rest
## 3399  Rest
## 3400  Rest
## 3401  Rest
## 3402  Rest
## 3403  Rest
## 3404  Rest
## 3405  West
## 3406  West
## 3407  Rest
## 3408  Rest
## 3409  Rest
## 3410  Rest
## 3411  West
## 3412  Rest
## 3413  West
## 3414  Rest
## 3415  Rest
## 3416  Rest
## 3417  Rest
## 3418  Rest
## 3419  Rest
## 3420  Rest
## 3421  Rest
## 3422  Rest
## 3423  Rest
## 3424  West
## 3425  Rest
## 3426  Rest
## 3427  Rest
## 3428  Rest
## 3429  West
## 3430  West
## 3431  Rest
## 3432  West
## 3433  Rest
## 3434  Rest
## 3435  Rest
## 3436  Rest
## 3437  Rest
## 3438  West
## 3439  Rest
## 3440  Rest
## 3441  Rest
## 3442  Rest
## 3443  West
## 3444  Rest
## 3445  West
## 3446  Rest
## 3447  Rest
## 3448  Rest
## 3449  Rest
## 3450  West
## 3451  Rest
## 3452  Rest
## 3453  Rest
## 3454  Rest
## 3455  Rest
## 3456  West
## 3457  Rest
## 3458  Rest
## 3459  Rest
## 3460  Rest
## 3461  Rest
## 3462  Rest
## 3463  Rest
## 3464  West
## 3465  West
## 3466  Rest
## 3467  Rest
## 3468  West
## 3469  West
## 3470  Rest
## 3471  Rest
## 3472  Rest
## 3473  Rest
## 3474  Rest
## 3475  Rest
## 3476  West
## 3477  Rest
## 3478  Rest
## 3479  Rest
## 3480  West
## 3481  West
## 3482  Rest
## 3483  Rest
## 3484  West
## 3485  Rest
## 3486  Rest
## 3487  Rest
## 3488  Rest
## 3489  West
## 3490  West
## 3491  Rest
## 3492  Rest
## 3493  Rest
## 3494  Rest
## 3495  Rest
## 3496  Rest
## 3497  Rest
## 3498  Rest
## 3499  Rest
## 3500  Rest
## 3501  Rest
## 3502  Rest
## 3503  West
## 3504  Rest
## 3505  West
## 3506  West
## 3507  Rest
## 3508  Rest
## 3509  Rest
## 3510  Rest
## 3511  Rest
## 3512  Rest
## 3513  Rest
## 3514  Rest
## 3515  Rest
## 3516  West
## 3517  Rest
## 3518  Rest
## 3519  Rest
## 3520  Rest
## 3521  Rest
## 3522  Rest
## 3523  Rest
## 3524  West
## 3525  Rest
## 3526  Rest
## 3527  Rest
## 3528  Rest
## 3529  Rest
## 3530  West
## 3531  West
## 3532  Rest
## 3533  Rest
## 3534  Rest
## 3535  Rest
## 3536  West
## 3537  Rest
## 3538  Rest
## 3539  Rest
## 3540  West
## 3541  Rest
## 3542  Rest
## 3543  Rest
## 3544  Rest
## 3545  West
## 3546  Rest
## 3547  Rest
## 3548  Rest
## 3549  Rest
## 3550  Rest
## 3551  Rest
## 3552  Rest
## 3553  Rest
## 3554  Rest
## 3555  Rest
## 3556  Rest
## 3557  West
## 3558  Rest
## 3559  Rest
## 3560  West
## 3561  West
## 3562  Rest
## 3563  Rest
## 3564  Rest
## 3565  Rest
## 3566  Rest
## 3567  Rest
## 3568  Rest
## 3569  West
## 3570  Rest
## 3571  Rest
## 3572  West
## 3573  West
## 3574  Rest
## 3575  Rest
## 3576  Rest
## 3577  Rest
## 3578  West
## 3579  Rest
## 3580  West
## 3581  West
## 3582  Rest
## 3583  Rest
## 3584  Rest
## 3585  Rest
## 3586  Rest
## 3587  Rest
## 3588  Rest
## 3589  Rest
## 3590  West
## 3591  West
## 3592  Rest
## 3593  Rest
## 3594  Rest
## 3595  Rest
## 3596  West
## 3597  Rest
## 3598  West
## 3599  Rest
## 3600  Rest
## 3601  Rest
## 3602  Rest
## 3603  Rest
## 3604  Rest
## 3605  Rest
## 3606  Rest
## 3607  Rest
## 3608  Rest
## 3609  West
## 3610  Rest
## 3611  Rest
## 3612  Rest
## 3613  Rest
## 3614  West
## 3615  West
## 3616  Rest
## 3617  West
## 3618  Rest
## 3619  Rest
## 3620  Rest
## 3621  Rest
## 3622  Rest
## 3623  West
## 3624  Rest
## 3625  Rest
## 3626  Rest
## 3627  Rest
## 3628  West
## 3629  Rest
## 3630  West
## 3631  Rest
## 3632  Rest
## 3633  Rest
## 3634  Rest
## 3635  West
## 3636  Rest
## 3637  Rest
## 3638  Rest
## 3639  Rest
## 3640  Rest
## 3641  West
## 3642  Rest
## 3643  Rest
## 3644  Rest
## 3645  Rest
## 3646  Rest
## 3647  Rest
## 3648  Rest
## 3649  West
## 3650  West
## 3651  Rest
## 3652  Rest
## 3653  West
## 3654  West
## 3655  Rest
## 3656  Rest
## 3657  Rest
## 3658  Rest
## 3659  Rest
## 3660  Rest
## 3661  West
## 3662  Rest
## 3663  Rest
## 3664  Rest
## 3665  West
## 3666  West
## 3667  Rest
## 3668  Rest
## 3669  West
## 3670  Rest
## 3671  Rest
## 3672  Rest
## 3673  Rest
## 3674  West
## 3675  West
## 3676  Rest
## 3677  Rest
## 3678  Rest
## 3679  Rest
## 3680  Rest
## 3681  Rest
## 3682  Rest
## 3683  Rest
## 3684  Rest
## 3685  Rest
## 3686  Rest
## 3687  Rest
## 3688  West
## 3689  Rest
## 3690  West
## 3691  West
## 3692  Rest
## 3693  Rest
## 3694  Rest
## 3695  Rest
## 3696  Rest
## 3697  Rest
## 3698  Rest
## 3699  Rest
## 3700  Rest
## 3701  West
## 3702  Rest
## 3703  Rest
## 3704  Rest
## 3705  Rest
## 3706  Rest
## 3707  Rest
## 3708  Rest
## 3709  West
## 3710  Rest
## 3711  Rest
## 3712  Rest
## 3713  Rest
## 3714  Rest
## 3715  West
## 3716  West
## 3717  Rest
## 3718  Rest
## 3719  Rest
## 3720  Rest
## 3721  West
## 3722  Rest
## 3723  Rest
## 3724  Rest
## 3725  West
## 3726  Rest
## 3727  Rest
## 3728  Rest
## 3729  Rest
## 3730  West
## 3731  Rest
## 3732  Rest
## 3733  Rest
## 3734  Rest
## 3735  Rest
## 3736  Rest
## 3737  Rest
## 3738  Rest
## 3739  Rest
## 3740  Rest
## 3741  Rest
## 3742  West
## 3743  Rest
## 3744  Rest
## 3745  West
## 3746  West
## 3747  Rest
## 3748  Rest
## 3749  Rest
## 3750  Rest
## 3751  Rest
## 3752  Rest
## 3753  Rest
## 3754  West
## 3755  Rest
## 3756  Rest
## 3757  West
## 3758  West
## 3759  Rest
## 3760  Rest
## 3761  Rest
## 3762  Rest
## 3763  West
## 3764  Rest
## 3765  West
## 3766  West
## 3767  Rest
## 3768  Rest
## 3769  Rest
## 3770  Rest
## 3771  Rest
## 3772  Rest
## 3773  Rest
## 3774  Rest
## 3775  West
## 3776  West
## 3777  Rest
## 3778  Rest
## 3779  Rest
## 3780  Rest
## 3781  West
## 3782  Rest
## 3783  West
## 3784  Rest
## 3785  Rest
## 3786  Rest
## 3787  Rest
## 3788  Rest
## 3789  Rest
## 3790  Rest
## 3791  Rest
## 3792  Rest
## 3793  Rest
## 3794  West
## 3795  Rest
## 3796  Rest
## 3797  Rest
## 3798  Rest
## 3799  West
## 3800  West
## 3801  Rest
## 3802  West
## 3803  Rest
## 3804  Rest
## 3805  Rest
## 3806  Rest
## 3807  Rest
## 3808  West
## 3809  Rest
## 3810  Rest
## 3811  Rest
## 3812  Rest
## 3813  West
## 3814  Rest
## 3815  West
## 3816  Rest
## 3817  Rest
## 3818  Rest
## 3819  Rest
## 3820  West
## 3821  Rest
## 3822  Rest
## 3823  Rest
## 3824  Rest
## 3825  Rest
## 3826  West
## 3827  Rest
## 3828  Rest
## 3829  Rest
## 3830  Rest
## 3831  Rest
## 3832  Rest
## 3833  Rest
## 3834  West
## 3835  West
## 3836  Rest
## 3837  Rest
## 3838  West
## 3839  West
## 3840  Rest
## 3841  Rest
## 3842  Rest
## 3843  Rest
## 3844  Rest
## 3845  Rest
## 3846  West
## 3847  Rest
## 3848  Rest
## 3849  Rest
## 3850  West
## 3851  West
## 3852  Rest
## 3853  Rest
## 3854  West
## 3855  Rest
## 3856  Rest
## 3857  Rest
## 3858  Rest
## 3859  West
## 3860  West
## 3861  Rest
## 3862  Rest
## 3863  Rest
## 3864  Rest
## 3865  Rest
## 3866  Rest
## 3867  Rest
## 3868  Rest
## 3869  Rest
## 3870  Rest
## 3871  Rest
## 3872  Rest
## 3873  West
## 3874  Rest
## 3875  West
## 3876  West
## 3877  Rest
## 3878  Rest
## 3879  Rest
## 3880  Rest
## 3881  Rest
## 3882  Rest
## 3883  Rest
## 3884  Rest
## 3885  Rest
## 3886  West
## 3887  Rest
## 3888  Rest
## 3889  Rest
## 3890  Rest
## 3891  Rest
## 3892  Rest
## 3893  Rest
## 3894  West
## 3895  Rest
## 3896  Rest
## 3897  Rest
## 3898  Rest
## 3899  Rest
## 3900  West
## 3901  West
## 3902  Rest
## 3903  Rest
## 3904  Rest
## 3905  Rest
## 3906  West
## 3907  Rest
## 3908  Rest
## 3909  Rest
## 3910  West
## 3911  Rest
## 3912  Rest
## 3913  Rest
## 3914  Rest
## 3915  West
## 3916  Rest
## 3917  Rest
## 3918  Rest
## 3919  Rest
## 3920  Rest
## 3921  Rest
## 3922  Rest
## 3923  Rest
## 3924  Rest
## 3925  Rest
## 3926  Rest
## 3927  West
## 3928  Rest
## 3929  Rest
## 3930  West
## 3931  West
## 3932  Rest
## 3933  Rest
## 3934  Rest
## 3935  Rest
## 3936  Rest
## 3937  Rest
## 3938  Rest
## 3939  West
## 3940  Rest
## 3941  Rest
## 3942  West
## 3943  West
## 3944  Rest
## 3945  Rest
## 3946  Rest
## 3947  Rest
## 3948  West
## 3949  Rest
## 3950  West
## 3951  West
## 3952  Rest
## 3953  Rest
## 3954  Rest
## 3955  Rest
## 3956  Rest
## 3957  Rest
## 3958  Rest
## 3959  Rest
## 3960  West
## 3961  West
## 3962  Rest
## 3963  Rest
## 3964  Rest
## 3965  Rest
## 3966  West
## 3967  Rest
## 3968  West
## 3969  Rest
## 3970  Rest
## 3971  Rest
## 3972  Rest
## 3973  Rest
## 3974  Rest
## 3975  Rest
## 3976  Rest
## 3977  Rest
## 3978  Rest
## 3979  West
## 3980  Rest
## 3981  Rest
## 3982  Rest
## 3983  Rest
## 3984  West
## 3985  West
## 3986  Rest
## 3987  West
## 3988  Rest
## 3989  Rest
## 3990  Rest
## 3991  Rest
## 3992  Rest
## 3993  West
## 3994  Rest
## 3995  Rest
## 3996  Rest
## 3997  Rest
## 3998  West
## 3999  Rest
## 4000  West
## 4001  Rest
## 4002  Rest
## 4003  Rest
## 4004  Rest
## 4005  West
## 4006  Rest
## 4007  Rest
## 4008  Rest
## 4009  Rest
## 4010  Rest
## 4011  West
## 4012  Rest
## 4013  Rest
## 4014  Rest
## 4015  Rest
## 4016  Rest
## 4017  Rest
## 4018  Rest
## 4019  West
## 4020  West
## 4021  Rest
## 4022  Rest
## 4023  West
## 4024  West
## 4025  Rest
## 4026  Rest
## 4027  Rest
## 4028  Rest
## 4029  Rest
## 4030  Rest
## 4031  West
## 4032  Rest
## 4033  Rest
## 4034  Rest
## 4035  West
## 4036  West
## 4037  Rest
## 4038  Rest
## 4039  West
## 4040  Rest
## 4041  Rest
## 4042  Rest
## 4043  Rest
## 4044  West
## 4045  West
## 4046  Rest
## 4047  Rest
## 4048  Rest
## 4049  Rest
## 4050  Rest
## 4051  Rest
## 4052  Rest
## 4053  Rest
## 4054  Rest
## 4055  Rest
## 4056  Rest
## 4057  Rest
## 4058  West
## 4059  Rest
## 4060  West
## 4061  West
## 4062  Rest
## 4063  Rest
## 4064  Rest
## 4065  Rest
## 4066  Rest
## 4067  Rest
## 4068  Rest
## 4069  Rest
## 4070  Rest
## 4071  West
## 4072  Rest
## 4073  Rest
## 4074  Rest
## 4075  Rest
## 4076  Rest
## 4077  Rest
## 4078  Rest
## 4079  West
## 4080  Rest
## 4081  Rest
## 4082  Rest
## 4083  Rest
## 4084  Rest
## 4085  West
## 4086  West
## 4087  Rest
## 4088  Rest
## 4089  Rest
## 4090  Rest
## 4091  West
## 4092  Rest
## 4093  Rest
## 4094  Rest
## 4095  West
## 4096  Rest
## 4097  Rest
## 4098  Rest
## 4099  Rest
## 4100  West
## 4101  Rest
## 4102  Rest
## 4103  Rest
## 4104  Rest
## 4105  Rest
## 4106  Rest
## 4107  Rest
## 4108  Rest
## 4109  Rest
## 4110  Rest
## 4111  Rest
## 4112  West
## 4113  Rest
## 4114  Rest
## 4115  West
## 4116  West
## 4117  Rest
## 4118  Rest
## 4119  Rest
## 4120  Rest
## 4121  Rest
## 4122  Rest
## 4123  Rest
## 4124  West
## 4125  Rest
## 4126  Rest
## 4127  West
## 4128  West
## 4129  Rest
## 4130  Rest
## 4131  Rest
## 4132  Rest
## 4133  West
## 4134  Rest
## 4135  West
## 4136  West
## 4137  Rest
## 4138  Rest
## 4139  Rest
## 4140  Rest
## 4141  Rest
## 4142  Rest
## 4143  Rest
## 4144  Rest
## 4145  West
## 4146  West
## 4147  Rest
## 4148  Rest
## 4149  Rest
## 4150  Rest
## 4151  West
## 4152  Rest
## 4153  West
## 4154  Rest
## 4155  Rest
## 4156  Rest
## 4157  Rest
## 4158  Rest
## 4159  Rest
## 4160  Rest
## 4161  Rest
## 4162  Rest
## 4163  Rest
## 4164  West
## 4165  Rest
## 4166  Rest
## 4167  Rest
## 4168  Rest
## 4169  West
## 4170  West
## 4171  Rest
## 4172  West
## 4173  Rest
## 4174  Rest
## 4175  Rest
## 4176  Rest
## 4177  Rest
## 4178  West
## 4179  Rest
## 4180  Rest
## 4181  Rest
## 4182  Rest
## 4183  West
## 4184  Rest
## 4185  West
## 4186  Rest
## 4187  Rest
## 4188  Rest
## 4189  Rest
## 4190  West
## 4191  Rest
## 4192  Rest
## 4193  Rest
## 4194  Rest
## 4195  Rest
## 4196  West
## 4197  Rest
## 4198  Rest
## 4199  Rest
## 4200  Rest
## 4201  Rest
## 4202  Rest
## 4203  Rest
## 4204  West
## 4205  West
## 4206  Rest
## 4207  Rest
## 4208  West
## 4209  West
## 4210  Rest
## 4211  Rest
## 4212  Rest
## 4213  Rest
## 4214  Rest
## 4215  Rest
## 4216  West
## 4217  Rest
## 4218  Rest
## 4219  Rest
## 4220  West
## 4221  West
## 4222  Rest
## 4223  Rest
## 4224  West
## 4225  Rest
## 4226  Rest
## 4227  Rest
## 4228  Rest
## 4229  West
## 4230  West
## 4231  Rest
## 4232  Rest
## 4233  Rest
## 4234  Rest
## 4235  Rest
## 4236  Rest
## 4237  Rest
## 4238  Rest
## 4239  Rest
## 4240  Rest
## 4241  Rest
## 4242  Rest
## 4243  West
## 4244  Rest
## 4245  West
## 4246  West
## 4247  Rest
## 4248  Rest
## 4249  Rest
## 4250  Rest
## 4251  Rest
## 4252  Rest
## 4253  Rest
## 4254  Rest
## 4255  Rest
## 4256  West
## 4257  Rest
## 4258  Rest
## 4259  Rest
## 4260  Rest
## 4261  Rest
## 4262  Rest
## 4263  Rest
## 4264  West
## 4265  Rest
## 4266  Rest
## 4267  Rest
## 4268  Rest
## 4269  Rest
## 4270  West
## 4271  West
## 4272  Rest
## 4273  Rest
## 4274  Rest
## 4275  Rest
## 4276  West
## 4277  Rest
## 4278  Rest
## 4279  Rest
## 4280  West
## 4281  Rest
## 4282  Rest
## 4283  Rest
## 4284  Rest
## 4285  West
## 4286  Rest
## 4287  Rest
## 4288  Rest
## 4289  Rest
## 4290  Rest
## 4291  Rest
## 4292  Rest
## 4293  Rest
## 4294  Rest
## 4295  Rest
## 4296  Rest
## 4297  West
## 4298  Rest
## 4299  Rest
## 4300  West
## 4301  West
## 4302  Rest
## 4303  Rest
## 4304  Rest
## 4305  Rest
## 4306  Rest
## 4307  Rest
## 4308  Rest
## 4309  West
## 4310  Rest
## 4311  Rest
## 4312  West
## 4313  West
## 4314  Rest
## 4315  Rest
## 4316  Rest
## 4317  Rest
## 4318  West
## 4319  Rest
## 4320  West
## 4321  West
## 4322  Rest
## 4323  Rest
## 4324  Rest
## 4325  Rest
## 4326  Rest
## 4327  Rest
## 4328  Rest
## 4329  Rest
## 4330  West
## 4331  West
## 4332  Rest
## 4333  Rest
## 4334  Rest
## 4335  Rest
## 4336  West
## 4337  Rest
## 4338  West
## 4339  Rest
## 4340  Rest
## 4341  Rest
## 4342  Rest
## 4343  Rest
## 4344  Rest
## 4345  Rest
## 4346  Rest
## 4347  Rest
## 4348  Rest
## 4349  West
## 4350  Rest
## 4351  Rest
## 4352  Rest
## 4353  Rest
## 4354  West
## 4355  West
## 4356  Rest
## 4357  West
## 4358  Rest
## 4359  Rest
## 4360  Rest
## 4361  Rest
## 4362  Rest
## 4363  West
## 4364  Rest
## 4365  Rest
## 4366  Rest
## 4367  Rest
## 4368  West
## 4369  Rest
## 4370  West
## 4371  Rest
## 4372  Rest
## 4373  Rest
## 4374  Rest
## 4375  West
## 4376  Rest
## 4377  Rest
## 4378  Rest
## 4379  Rest
## 4380  Rest
## 4381  West
## 4382  Rest
## 4383  Rest
## 4384  Rest
## 4385  Rest
## 4386  Rest
## 4387  Rest
## 4388  Rest
## 4389  West
## 4390  West
## 4391  Rest
## 4392  Rest
## 4393  West
## 4394  West
## 4395  Rest
## 4396  Rest
## 4397  Rest
## 4398  Rest
## 4399  Rest
## 4400  Rest
## 4401  West
## 4402  Rest
## 4403  Rest
## 4404  Rest
## 4405  West
## 4406  West
## 4407  Rest
## 4408  Rest
## 4409  West
## 4410  Rest
## 4411  Rest
## 4412  Rest
## 4413  Rest
## 4414  West
## 4415  West
## 4416  Rest
## 4417  Rest
## 4418  Rest
## 4419  Rest
## 4420  Rest
## 4421  Rest
## 4422  Rest
## 4423  Rest
## 4424  Rest
## 4425  Rest
## 4426  Rest
## 4427  Rest
## 4428  West
## 4429  Rest
## 4430  West
## 4431  West
## 4432  Rest
## 4433  Rest
## 4434  Rest
## 4435  Rest
## 4436  Rest
## 4437  Rest
## 4438  Rest
## 4439  Rest
## 4440  Rest
## 4441  West
## 4442  Rest
## 4443  Rest
## 4444  Rest
## 4445  Rest
## 4446  Rest
## 4447  Rest
## 4448  Rest
## 4449  West
## 4450  Rest
## 4451  Rest
## 4452  Rest
## 4453  Rest
## 4454  Rest
## 4455  West
## 4456  West
## 4457  Rest
## 4458  Rest
## 4459  Rest
## 4460  Rest
## 4461  West
## 4462  Rest
## 4463  Rest
## 4464  Rest
## 4465  West
## 4466  Rest
## 4467  Rest
## 4468  Rest
## 4469  Rest
## 4470  West
## 4471  Rest
## 4472  Rest
## 4473  Rest
## 4474  Rest
## 4475  Rest
## 4476  Rest
## 4477  Rest
## 4478  Rest
## 4479  Rest
## 4480  Rest
## 4481  Rest
## 4482  West
## 4483  Rest
## 4484  Rest
## 4485  West
## 4486  West
## 4487  Rest
## 4488  Rest
## 4489  Rest
## 4490  Rest
## 4491  Rest
## 4492  Rest
## 4493  Rest
## 4494  West
## 4495  Rest
## 4496  Rest
## 4497  West
## 4498  West
## 4499  Rest
## 4500  Rest
## 4501  Rest
## 4502  Rest
## 4503  West
## 4504  Rest
## 4505  West
## 4506  West
## 4507  Rest
## 4508  Rest
## 4509  Rest
## 4510  Rest
## 4511  Rest
## 4512  Rest
## 4513  Rest
## 4514  Rest
## 4515  West
## 4516  West
## 4517  Rest
## 4518  Rest
## 4519  Rest
## 4520  Rest
## 4521  West
## 4522  Rest
## 4523  West
## 4524  Rest
## 4525  Rest
## 4526  Rest
## 4527  Rest
## 4528  Rest
## 4529  Rest
## 4530  Rest
## 4531  Rest
## 4532  Rest
## 4533  Rest
## 4534  West
## 4535  Rest
## 4536  Rest
## 4537  Rest
## 4538  Rest
## 4539  West
## 4540  West
## 4541  Rest
## 4542  West
## 4543  Rest
## 4544  Rest
## 4545  Rest
## 4546  Rest
## 4547  Rest
## 4548  West
## 4549  Rest
## 4550  Rest
## 4551  Rest
## 4552  Rest
## 4553  West
## 4554  Rest
## 4555  West
## 4556  Rest
## 4557  Rest
## 4558  Rest
## 4559  Rest
## 4560  West
## 4561  Rest
## 4562  Rest
## 4563  Rest
## 4564  Rest
## 4565  Rest
## 4566  West
## 4567  Rest
## 4568  Rest
## 4569  Rest
## 4570  Rest
## 4571  Rest
## 4572  Rest
## 4573  Rest
## 4574  West
## 4575  West
## 4576  Rest
## 4577  Rest
## 4578  West
## 4579  West
## 4580  Rest
## 4581  Rest
## 4582  Rest
## 4583  Rest
## 4584  Rest
## 4585  Rest
## 4586  West
## 4587  Rest
## 4588  Rest
## 4589  Rest
## 4590  West
## 4591  West
## 4592  Rest
## 4593  Rest
## 4594  West
## 4595  Rest
## 4596  Rest
## 4597  Rest
## 4598  Rest
## 4599  West
## 4600  West
## 4601  Rest
## 4602  Rest
## 4603  Rest
## 4604  Rest
## 4605  Rest
## 4606  Rest
## 4607  Rest
## 4608  Rest
## 4609  Rest
## 4610  Rest
## 4611  Rest
## 4612  Rest
## 4613  West
## 4614  Rest
## 4615  West
## 4616  West
## 4617  Rest
## 4618  Rest
## 4619  Rest
## 4620  Rest
## 4621  Rest
## 4622  Rest
## 4623  Rest
## 4624  Rest
## 4625  Rest
## 4626  West
## 4627  Rest
## 4628  Rest
## 4629  Rest
## 4630  Rest
## 4631  Rest
## 4632  Rest
## 4633  Rest
## 4634  West
## 4635  Rest
## 4636  Rest
## 4637  Rest
## 4638  Rest
## 4639  Rest
## 4640  West
## 4641  West
## 4642  Rest
## 4643  Rest
## 4644  Rest
## 4645  Rest
## 4646  West
## 4647  Rest
## 4648  Rest
## 4649  Rest
## 4650  West
## 4651  Rest
## 4652  Rest
## 4653  Rest
## 4654  Rest
## 4655  West
## 4656  Rest
## 4657  Rest
## 4658  Rest
## 4659  Rest
## 4660  Rest
## 4661  Rest
## 4662  Rest
## 4663  Rest
## 4664  Rest
## 4665  Rest
## 4666  Rest
## 4667  West
## 4668  Rest
## 4669  Rest
## 4670  West
## 4671  West
## 4672  Rest
## 4673  Rest
## 4674  Rest
## 4675  Rest
## 4676  Rest
## 4677  Rest
## 4678  Rest
## 4679  West
## 4680  Rest
## 4681  Rest
## 4682  West
## 4683  West
## 4684  Rest
## 4685  Rest
## 4686  Rest
## 4687  Rest
## 4688  West
## 4689  Rest
## 4690  West
## 4691  West
## 4692  Rest
## 4693  Rest
## 4694  Rest
## 4695  Rest
## 4696  Rest
## 4697  Rest
## 4698  Rest
## 4699  Rest
## 4700  West
## 4701  West
## 4702  Rest
## 4703  Rest
## 4704  Rest
## 4705  Rest
## 4706  West
## 4707  Rest
## 4708  West
## 4709  Rest
## 4710  Rest
## 4711  Rest
## 4712  Rest
## 4713  Rest
## 4714  Rest
## 4715  Rest
## 4716  Rest
## 4717  Rest
## 4718  Rest
## 4719  West
## 4720  Rest
## 4721  Rest
## 4722  Rest
## 4723  Rest
## 4724  West
## 4725  West
## 4726  Rest
## 4727  West
## 4728  Rest
## 4729  Rest
## 4730  Rest
## 4731  Rest
## 4732  Rest
## 4733  West
## 4734  Rest
## 4735  Rest
## 4736  Rest
## 4737  Rest
## 4738  West
## 4739  Rest
## 4740  West
## 4741  Rest
## 4742  Rest
## 4743  Rest
## 4744  Rest
## 4745  West
## 4746  Rest
## 4747  Rest
## 4748  Rest
## 4749  Rest
## 4750  Rest
## 4751  West
## 4752  Rest
## 4753  Rest
## 4754  Rest
## 4755  Rest
## 4756  Rest
## 4757  Rest
## 4758  Rest
## 4759  West
## 4760  West
## 4761  Rest
## 4762  Rest
## 4763  West
## 4764  West
## 4765  Rest
## 4766  Rest
## 4767  Rest
## 4768  Rest
## 4769  Rest
## 4770  Rest
## 4771  West
## 4772  Rest
## 4773  Rest
## 4774  Rest
## 4775  West
## 4776  West
## 4777  Rest
## 4778  Rest
## 4779  West
## 4780  Rest
## 4781  Rest
## 4782  Rest
## 4783  Rest
## 4784  West
## 4785  West
## 4786  Rest
## 4787  Rest
## 4788  Rest
## 4789  Rest
## 4790  Rest
## 4791  Rest
## 4792  Rest
## 4793  Rest
## 4794  Rest
## 4795  Rest
## 4796  Rest
## 4797  Rest
## 4798  West
## 4799  Rest
## 4800  West
## 4801  West
## 4802  Rest
## 4803  Rest
## 4804  Rest
## 4805  Rest
## 4806  Rest
## 4807  Rest
## 4808  Rest
## 4809  Rest
## 4810  Rest
## 4811  West
## 4812  Rest
## 4813  Rest
## 4814  Rest
## 4815  Rest
## 4816  Rest
## 4817  Rest
## 4818  Rest
## 4819  West
## 4820  Rest
## 4821  Rest
## 4822  Rest
## 4823  Rest
## 4824  Rest
## 4825  West
## 4826  West
## 4827  Rest
## 4828  Rest
## 4829  Rest
## 4830  Rest
## 4831  West
## 4832  Rest
## 4833  Rest
## 4834  Rest
## 4835  West
## 4836  Rest
## 4837  Rest
## 4838  Rest
## 4839  Rest
## 4840  West
## 4841  Rest
## 4842  Rest
## 4843  Rest
## 4844  Rest
## 4845  Rest
## 4846  Rest
## 4847  Rest
## 4848  Rest
## 4849  Rest
## 4850  Rest
## 4851  Rest
## 4852  West
## 4853  Rest
## 4854  Rest
## 4855  West
## 4856  West
## 4857  Rest
## 4858  Rest
## 4859  Rest
## 4860  Rest
## 4861  Rest
## 4862  Rest
## 4863  Rest
## 4864  West
## 4865  Rest
## 4866  Rest
## 4867  West
## 4868  West
## 4869  Rest
## 4870  Rest
## 4871  Rest
## 4872  Rest
## 4873  West
## 4874  Rest
## 4875  West
## 4876  West
## 4877  Rest
## 4878  Rest
## 4879  Rest
## 4880  Rest
## 4881  Rest
## 4882  Rest
## 4883  Rest
## 4884  Rest
## 4885  West
## 4886  West
## 4887  Rest
## 4888  Rest
## 4889  Rest
## 4890  Rest
## 4891  West
## 4892  Rest
## 4893  West
## 4894  Rest
## 4895  Rest
## 4896  Rest
## 4897  Rest
## 4898  Rest
## 4899  Rest
## 4900  Rest
## 4901  Rest
## 4902  Rest
## 4903  Rest
## 4904  West
## 4905  Rest
## 4906  Rest
## 4907  Rest
## 4908  Rest
## 4909  West
## 4910  West
## 4911  Rest
## 4912  West
## 4913  Rest
## 4914  Rest
## 4915  Rest
## 4916  Rest
## 4917  Rest
## 4918  West
## 4919  Rest
## 4920  Rest
## 4921  Rest
## 4922  Rest
## 4923  West
## 4924  Rest
## 4925  West
## 4926  Rest
## 4927  Rest
## 4928  Rest
## 4929  Rest
## 4930  West
## 4931  Rest
## 4932  Rest
## 4933  Rest
## 4934  Rest
## 4935  Rest
## 4936  West
## 4937  Rest
## 4938  Rest
## 4939  Rest
## 4940  Rest
## 4941  Rest
## 4942  Rest
## 4943  Rest
## 4944  West
## 4945  West
## 4946  Rest
## 4947  Rest
## 4948  West
## 4949  West
## 4950  Rest
## 4951  Rest
## 4952  Rest
## 4953  Rest
## 4954  Rest
## 4955  Rest
## 4956  West
## 4957  Rest
## 4958  Rest
## 4959  Rest
## 4960  West
## 4961  West
## 4962  Rest
## 4963  Rest
## 4964  West
## 4965  Rest
## 4966  Rest
## 4967  Rest
## 4968  Rest
## 4969  West
## 4970  West
## 4971  Rest
## 4972  Rest
## 4973  Rest
## 4974  Rest
## 4975  Rest
## 4976  Rest
## 4977  Rest
## 4978  Rest
## 4979  Rest
## 4980  Rest
## 4981  Rest
## 4982  Rest
## 4983  West
## 4984  Rest
## 4985  West
## 4986  West
## 4987  Rest
## 4988  Rest
## 4989  Rest
## 4990  Rest
## 4991  Rest
## 4992  Rest
## 4993  Rest
## 4994  Rest
## 4995  Rest
## 4996  West
## 4997  Rest
## 4998  Rest
## 4999  Rest
## 5000  Rest
## 5001  Rest
## 5002  Rest
## 5003  Rest
## 5004  West
## 5005  Rest
## 5006  Rest
## 5007  Rest
## 5008  Rest
## 5009  Rest
## 5010  West
## 5011  West
## 5012  Rest
## 5013  Rest
## 5014  Rest
## 5015  Rest
## 5016  West
## 5017  Rest
## 5018  Rest
## 5019  Rest
## 5020  West
## 5021  Rest
## 5022  Rest
## 5023  Rest
## 5024  Rest
## 5025  West
## 5026  Rest
## 5027  Rest
## 5028  Rest
## 5029  Rest
## 5030  Rest
## 5031  Rest
## 5032  Rest
## 5033  Rest
## 5034  Rest
## 5035  Rest
## 5036  Rest
## 5037  West
## 5038  Rest
## 5039  Rest
## 5040  West
## 5041  West
## 5042  Rest
## 5043  Rest
## 5044  Rest
## 5045  Rest
## 5046  Rest
## 5047  Rest
## 5048  Rest
## 5049  West
## 5050  Rest
## 5051  Rest
## 5052  West
## 5053  West
## 5054  Rest
## 5055  Rest
## 5056  Rest
## 5057  Rest
## 5058  West
## 5059  Rest
## 5060  West
## 5061  West
## 5062  Rest
## 5063  Rest
## 5064  Rest
## 5065  Rest
## 5066  Rest
## 5067  Rest
## 5068  Rest
## 5069  Rest
## 5070  West
## 5071  West
## 5072  Rest
## 5073  Rest
## 5074  Rest
## 5075  Rest
## 5076  West
## 5077  Rest
## 5078  West
## 5079  Rest
## 5080  Rest
## 5081  Rest
## 5082  Rest
## 5083  Rest
## 5084  Rest
## 5085  Rest
## 5086  Rest
## 5087  Rest
## 5088  Rest
## 5089  West
## 5090  Rest
## 5091  Rest
## 5092  Rest
## 5093  Rest
## 5094  West
## 5095  West
## 5096  Rest
## 5097  West
## 5098  Rest
## 5099  Rest
## 5100  Rest
## 5101  Rest
## 5102  Rest
## 5103  West
## 5104  Rest
## 5105  Rest
## 5106  Rest
## 5107  Rest
## 5108  West
## 5109  Rest
## 5110  West
## 5111  Rest
## 5112  Rest
## 5113  Rest
## 5114  Rest
## 5115  West
## 5116  Rest
## 5117  Rest
## 5118  Rest
## 5119  Rest
## 5120  Rest
## 5121  West
## 5122  Rest
## 5123  Rest
## 5124  Rest
## 5125  Rest
## 5126  Rest
## 5127  Rest
## 5128  Rest
## 5129  West
## 5130  West
## 5131  Rest
## 5132  Rest
## 5133  West
## 5134  West
## 5135  Rest
## 5136  Rest
## 5137  Rest
## 5138  Rest
## 5139  Rest
## 5140  Rest
## 5141  West
## 5142  Rest
## 5143  Rest
## 5144  Rest
## 5145  West
## 5146  West
## 5147  Rest
## 5148  Rest
## 5149  West
## 5150  Rest
## 5151  Rest
## 5152  Rest
## 5153  Rest
## 5154  West
## 5155  West
## 5156  Rest
## 5157  Rest
## 5158  Rest
## 5159  Rest
## 5160  Rest
## 5161  Rest
## 5162  Rest
## 5163  Rest
## 5164  Rest
## 5165  Rest
## 5166  Rest
## 5167  Rest
## 5168  West
## 5169  Rest
## 5170  West
## 5171  West
## 5172  Rest
## 5173  Rest
## 5174  Rest
## 5175  Rest
## 5176  Rest
## 5177  Rest
## 5178  Rest
## 5179  Rest
## 5180  Rest
## 5181  West
## 5182  Rest
## 5183  Rest
## 5184  Rest
## 5185  Rest
## 5186  Rest
## 5187  Rest
## 5188  Rest
## 5189  West
## 5190  Rest
## 5191  Rest
## 5192  Rest
## 5193  Rest
## 5194  Rest
## 5195  West
## 5196  West
## 5197  Rest
## 5198  Rest
## 5199  Rest
## 5200  Rest
## 5201  West
## 5202  Rest
## 5203  Rest
## 5204  Rest
## 5205  West
## 5206  Rest
## 5207  Rest
## 5208  Rest
## 5209  Rest
## 5210  West
## 5211  Rest
## 5212  Rest
## 5213  Rest
## 5214  Rest
## 5215  Rest
## 5216  Rest
## 5217  Rest
## 5218  Rest
## 5219  Rest
## 5220  Rest
## 5221  Rest
## 5222  West
## 5223  Rest
## 5224  Rest
## 5225  West
## 5226  West
## 5227  Rest
## 5228  Rest
## 5229  Rest
## 5230  Rest
## 5231  Rest
## 5232  Rest
## 5233  Rest
## 5234  West
## 5235  Rest
## 5236  Rest
## 5237  West
## 5238  West
## 5239  Rest
## 5240  Rest
## 5241  Rest
## 5242  Rest
## 5243  West
## 5244  Rest
## 5245  West
## 5246  West
## 5247  Rest
## 5248  Rest
## 5249  Rest
## 5250  Rest
## 5251  Rest
## 5252  Rest
## 5253  Rest
## 5254  Rest
## 5255  West
## 5256  West
## 5257  Rest
## 5258  Rest
## 5259  Rest
## 5260  Rest
## 5261  West
## 5262  Rest
## 5263  West
## 5264  Rest
## 5265  Rest
## 5266  Rest
## 5267  Rest
## 5268  Rest
## 5269  Rest
## 5270  Rest
## 5271  Rest
## 5272  Rest
## 5273  Rest
## 5274  West
## 5275  Rest
## 5276  Rest
## 5277  Rest
## 5278  Rest
## 5279  West
## 5280  West
## 5281  Rest
## 5282  West
## 5283  Rest
## 5284  Rest
## 5285  Rest
## 5286  Rest
## 5287  Rest
## 5288  West
## 5289  Rest
## 5290  Rest
## 5291  Rest
## 5292  Rest
## 5293  West
## 5294  Rest
## 5295  West
## 5296  Rest
## 5297  Rest
## 5298  Rest
## 5299  Rest
## 5300  West
## 5301  Rest
## 5302  Rest
## 5303  Rest
## 5304  Rest
## 5305  Rest
## 5306  West
## 5307  Rest
## 5308  Rest
## 5309  Rest
## 5310  Rest
## 5311  Rest
## 5312  Rest
## 5313  Rest
## 5314  West
## 5315  West
## 5316  Rest
## 5317  Rest
## 5318  West
## 5319  West
## 5320  Rest
## 5321  Rest
## 5322  Rest
## 5323  Rest
## 5324  Rest
## 5325  Rest
## 5326  West
## 5327  Rest
## 5328  Rest
## 5329  Rest
## 5330  West
## 5331  West
## 5332  Rest
## 5333  Rest
## 5334  West
## 5335  Rest
## 5336  Rest
## 5337  Rest
## 5338  Rest
## 5339  West
## 5340  West
## 5341  Rest
## 5342  Rest
## 5343  Rest
## 5344  Rest
## 5345  Rest
## 5346  Rest
## 5347  Rest
## 5348  Rest
## 5349  Rest
## 5350  Rest
## 5351  Rest
## 5352  Rest
## 5353  West
## 5354  Rest
## 5355  West
## 5356  West
## 5357  Rest
## 5358  Rest
## 5359  Rest
## 5360  Rest
## 5361  Rest
## 5362  Rest
## 5363  Rest
## 5364  Rest
## 5365  Rest
## 5366  West
## 5367  Rest
## 5368  Rest
## 5369  Rest
## 5370  Rest
## 5371  Rest
## 5372  Rest
## 5373  Rest
## 5374  West
## 5375  Rest
## 5376  Rest
## 5377  Rest
## 5378  Rest
## 5379  Rest
## 5380  West
## 5381  West
## 5382  Rest
## 5383  Rest
## 5384  Rest
## 5385  Rest
## 5386  West
## 5387  Rest
## 5388  Rest
## 5389  Rest
## 5390  West
## 5391  Rest
## 5392  Rest
## 5393  Rest
## 5394  Rest
## 5395  West
## 5396  Rest
## 5397  Rest
## 5398  Rest
## 5399  Rest
## 5400  Rest
## 5401  Rest
## 5402  Rest
## 5403  Rest
## 5404  Rest
## 5405  Rest
## 5406  Rest
## 5407  West
## 5408  Rest
## 5409  Rest
## 5410  West
## 5411  West
## 5412  Rest
## 5413  Rest
## 5414  Rest
## 5415  Rest
## 5416  Rest
## 5417  Rest
## 5418  Rest
## 5419  West
## 5420  Rest
## 5421  Rest
## 5422  West
## 5423  West
## 5424  Rest
## 5425  Rest
## 5426  Rest
## 5427  Rest
## 5428  West
## 5429  Rest
## 5430  West
## 5431  West
## 5432  Rest
## 5433  Rest
## 5434  Rest
## 5435  Rest
## 5436  Rest
## 5437  Rest
## 5438  Rest
## 5439  Rest
## 5440  West
## 5441  West
## 5442  Rest
## 5443  Rest
## 5444  Rest
## 5445  Rest
## 5446  West
## 5447  Rest
## 5448  West
## 5449  Rest
## 5450  Rest
## 5451  Rest
## 5452  Rest
## 5453  Rest
## 5454  Rest
## 5455  Rest
## 5456  Rest
## 5457  Rest
## 5458  Rest
## 5459  West
## 5460  Rest
## 5461  Rest
## 5462  Rest
## 5463  Rest
## 5464  West
## 5465  West
## 5466  Rest
## 5467  West
## 5468  Rest
## 5469  Rest
## 5470  Rest
## 5471  Rest
## 5472  Rest
## 5473  West
## 5474  Rest
## 5475  Rest
## 5476  Rest
## 5477  Rest
## 5478  West
## 5479  Rest
## 5480  West
## 5481  Rest
## 5482  Rest
## 5483  Rest
## 5484  Rest
## 5485  West
## 5486  Rest
## 5487  Rest
## 5488  Rest
## 5489  Rest
## 5490  Rest
## 5491  West
## 5492  Rest
## 5493  Rest
## 5494  Rest
## 5495  Rest
## 5496  Rest
## 5497  Rest
## 5498  Rest
## 5499  West
## 5500  West
## 5501  Rest
## 5502  Rest
## 5503  West
## 5504  West
## 5505  Rest
## 5506  Rest
## 5507  Rest
## 5508  Rest
## 5509  Rest
## 5510  Rest
## 5511  West
## 5512  Rest
## 5513  Rest
## 5514  Rest
## 5515  West
## 5516  West
## 5517  Rest
## 5518  Rest
## 5519  West
## 5520  Rest
## 5521  Rest
## 5522  Rest
## 5523  Rest
## 5524  West
## 5525  West
## 5526  Rest
## 5527  Rest
## 5528  Rest
## 5529  Rest
## 5530  Rest
## 5531  Rest
## 5532  Rest
## 5533  Rest
## 5534  Rest
## 5535  Rest
## 5536  Rest
## 5537  Rest
## 5538  West
## 5539  Rest
## 5540  West
## 5541  West
## 5542  Rest
## 5543  Rest
## 5544  Rest
## 5545  Rest
## 5546  Rest
## 5547  Rest
## 5548  Rest
## 5549  Rest
## 5550  Rest
## 5551  West
## 5552  Rest
## 5553  Rest
## 5554  Rest
## 5555  Rest
## 5556  Rest
## 5557  Rest
## 5558  Rest
## 5559  West
## 5560  Rest
## 5561  Rest
## 5562  Rest
## 5563  Rest
## 5564  Rest
## 5565  West
## 5566  West
## 5567  Rest
## 5568  Rest
## 5569  Rest
## 5570  Rest
## 5571  West
## 5572  Rest
## 5573  Rest
## 5574  Rest
## 5575  West
## 5576  Rest
## 5577  Rest
## 5578  Rest
## 5579  Rest
## 5580  West
## 5581  Rest
## 5582  Rest
## 5583  Rest
## 5584  Rest
## 5585  Rest
## 5586  Rest
## 5587  Rest
## 5588  Rest
## 5589  Rest
## 5590  Rest
## 5591  Rest
## 5592  West
## 5593  Rest
## 5594  Rest
## 5595  West
## 5596  West
## 5597  Rest
## 5598  Rest
## 5599  Rest
## 5600  Rest
## 5601  Rest
## 5602  Rest
## 5603  Rest
## 5604  West
## 5605  Rest
## 5606  Rest
## 5607  West
## 5608  West
## 5609  Rest
## 5610  Rest
## 5611  Rest
## 5612  Rest
## 5613  West
## 5614  Rest
## 5615  West
## 5616  West
## 5617  Rest
## 5618  Rest
## 5619  Rest
## 5620  Rest
## 5621  Rest
## 5622  Rest
## 5623  Rest
## 5624  Rest
## 5625  West
## 5626  West
## 5627  Rest
## 5628  Rest
## 5629  Rest
## 5630  Rest
## 5631  West
## 5632  Rest
## 5633  West
## 5634  Rest
## 5635  Rest
## 5636  Rest
## 5637  Rest
## 5638  Rest
## 5639  Rest
## 5640  Rest
## 5641  Rest
## 5642  Rest
## 5643  Rest
## 5644  West
## 5645  Rest
## 5646  Rest
## 5647  Rest
## 5648  Rest
## 5649  West
## 5650  West
## 5651  Rest
## 5652  West
## 5653  Rest
## 5654  Rest
## 5655  Rest
## 5656  Rest
## 5657  Rest
## 5658  West
## 5659  Rest
## 5660  Rest
## 5661  Rest
## 5662  Rest
## 5663  West
## 5664  Rest
## 5665  West
## 5666  Rest
## 5667  Rest
## 5668  Rest
## 5669  Rest
## 5670  West
## 5671  Rest
## 5672  Rest
## 5673  Rest
## 5674  Rest
## 5675  Rest
## 5676  West
## 5677  Rest
## 5678  Rest
## 5679  Rest
## 5680  Rest
## 5681  Rest
## 5682  Rest
## 5683  Rest
## 5684  West
## 5685  West
## 5686  Rest
## 5687  Rest
## 5688  West
## 5689  West
## 5690  Rest
## 5691  Rest
## 5692  Rest
## 5693  Rest
## 5694  Rest
## 5695  Rest
## 5696  West
## 5697  Rest
## 5698  Rest
## 5699  Rest
## 5700  West
## 5701  West
## 5702  Rest
## 5703  Rest
## 5704  West
## 5705  Rest
## 5706  Rest
## 5707  Rest
## 5708  Rest
## 5709  West
## 5710  West
## 5711  Rest
## 5712  Rest
## 5713  Rest
## 5714  Rest
## 5715  Rest
## 5716  Rest
## 5717  Rest
## 5718  Rest
## 5719  Rest
## 5720  Rest
## 5721  Rest
## 5722  Rest
## 5723  West
## 5724  Rest
## 5725  West
## 5726  West
## 5727  Rest
## 5728  Rest
## 5729  Rest
## 5730  Rest
## 5731  Rest
## 5732  Rest
## 5733  Rest
## 5734  Rest
## 5735  Rest
## 5736  West
## 5737  Rest
## 5738  Rest
## 5739  Rest
## 5740  Rest
## 5741  Rest
## 5742  Rest
## 5743  Rest
## 5744  West
## 5745  Rest
## 5746  Rest
## 5747  Rest
## 5748  Rest
## 5749  Rest
## 5750  West
## 5751  West
## 5752  Rest
## 5753  Rest
## 5754  Rest
## 5755  Rest
## 5756  West
## 5757  Rest
## 5758  Rest
## 5759  Rest
## 5760  West
## 5761  Rest
## 5762  Rest
## 5763  Rest
## 5764  Rest
## 5765  West
## 5766  Rest
## 5767  Rest
## 5768  Rest
## 5769  Rest
## 5770  Rest
## 5771  Rest
## 5772  Rest
## 5773  Rest
## 5774  Rest
## 5775  Rest
## 5776  Rest
## 5777  West
## 5778  Rest
## 5779  Rest
## 5780  West
## 5781  West
## 5782  Rest
## 5783  Rest
## 5784  Rest
## 5785  Rest
## 5786  Rest
## 5787  Rest
## 5788  Rest
## 5789  West
## 5790  Rest
## 5791  Rest
## 5792  West
## 5793  West
## 5794  Rest
## 5795  Rest
## 5796  Rest
## 5797  Rest
## 5798  West
## 5799  Rest
## 5800  West
## 5801  West
## 5802  Rest
## 5803  Rest
## 5804  Rest
## 5805  Rest
## 5806  Rest
## 5807  Rest
## 5808  Rest
## 5809  Rest
## 5810  West
## 5811  West
## 5812  Rest
## 5813  Rest
## 5814  Rest
## 5815  Rest
## 5816  West
## 5817  Rest
## 5818  West
## 5819  Rest
## 5820  Rest
## 5821  Rest
## 5822  Rest
## 5823  Rest
## 5824  Rest
## 5825  Rest
## 5826  Rest
## 5827  Rest
## 5828  Rest
## 5829  West
## 5830  Rest
## 5831  Rest
## 5832  Rest
## 5833  Rest
## 5834  West
## 5835  West
## 5836  Rest
## 5837  West
## 5838  Rest
## 5839  Rest
## 5840  Rest
## 5841  Rest
## 5842  Rest
## 5843  West
## 5844  Rest
## 5845  Rest
## 5846  Rest
## 5847  Rest
## 5848  West
## 5849  Rest
## 5850  West
## 5851  Rest
## 5852  Rest
## 5853  Rest
## 5854  Rest
## 5855  West
## 5856  Rest
## 5857  Rest
## 5858  Rest
## 5859  Rest
## 5860  Rest
## 5861  West
## 5862  Rest
## 5863  Rest
## 5864  Rest
## 5865  Rest
## 5866  Rest
## 5867  Rest
## 5868  Rest
## 5869  West
## 5870  West
## 5871  Rest
## 5872  Rest
## 5873  West
## 5874  West
## 5875  Rest
## 5876  Rest
## 5877  Rest
## 5878  Rest
## 5879  Rest
## 5880  Rest
## 5881  West
## 5882  Rest
## 5883  Rest
## 5884  Rest
## 5885  West
## 5886  West
## 5887  Rest
## 5888  Rest
## 5889  West
## 5890  Rest
## 5891  Rest
## 5892  Rest
## 5893  Rest
## 5894  West
## 5895  West
## 5896  Rest
## 5897  Rest
## 5898  Rest
## 5899  Rest
## 5900  Rest
## 5901  Rest
## 5902  Rest
## 5903  Rest
## 5904  Rest
## 5905  Rest
## 5906  Rest
## 5907  Rest
## 5908  West
## 5909  Rest
## 5910  West
## 5911  West
## 5912  Rest
## 5913  Rest
## 5914  Rest
## 5915  Rest
## 5916  Rest
## 5917  Rest
## 5918  Rest
## 5919  Rest
## 5920  Rest
## 5921  West
## 5922  Rest
## 5923  Rest
## 5924  Rest
## 5925  Rest
## 5926  Rest
## 5927  Rest
## 5928  Rest
## 5929  West
## 5930  Rest
## 5931  Rest
## 5932  Rest
## 5933  Rest
## 5934  Rest
## 5935  West
## 5936  West
## 5937  Rest
## 5938  Rest
## 5939  Rest
## 5940  Rest
## 5941  West
## 5942  Rest
## 5943  Rest
## 5944  Rest
## 5945  West
## 5946  Rest
## 5947  Rest
## 5948  Rest
## 5949  Rest
## 5950  West
## 5951  Rest
## 5952  Rest
## 5953  Rest
## 5954  Rest
## 5955  Rest
## 5956  Rest
## 5957  Rest
## 5958  Rest
## 5959  Rest
## 5960  Rest
## 5961  Rest
## 5962  West
## 5963  Rest
## 5964  Rest
## 5965  West
## 5966  West
## 5967  Rest
## 5968  Rest
## 5969  Rest
## 5970  Rest
## 5971  Rest
## 5972  Rest
## 5973  Rest
## 5974  West
## 5975  Rest
## 5976  Rest
## 5977  West
## 5978  West
## 5979  Rest
## 5980  Rest
## 5981  Rest
## 5982  Rest
## 5983  West
## 5984  Rest
## 5985  West
## 5986  West
## 5987  Rest
## 5988  Rest
## 5989  Rest
## 5990  Rest
## 5991  Rest
## 5992  Rest
## 5993  Rest
## 5994  Rest
## 5995  West
## 5996  West
## 5997  Rest
## 5998  Rest
## 5999  Rest
## 6000  Rest
## 6001  West
## 6002  Rest
## 6003  West
## 6004  Rest
## 6005  Rest
## 6006  Rest
## 6007  Rest
## 6008  Rest
## 6009  Rest
## 6010  Rest
## 6011  Rest
## 6012  Rest
## 6013  Rest
## 6014  West
## 6015  Rest
## 6016  Rest
## 6017  Rest
## 6018  Rest
## 6019  West
## 6020  West
## 6021  Rest
## 6022  West
## 6023  Rest
## 6024  Rest
## 6025  Rest
## 6026  Rest
## 6027  Rest
## 6028  West
## 6029  Rest
## 6030  Rest
## 6031  Rest
## 6032  Rest
## 6033  West
## 6034  Rest
## 6035  West
## 6036  Rest
## 6037  Rest
## 6038  Rest
## 6039  Rest
## 6040  West
## 6041  Rest
## 6042  Rest
## 6043  Rest
## 6044  Rest
## 6045  Rest
## 6046  West
## 6047  Rest
## 6048  Rest
## 6049  Rest
## 6050  Rest
## 6051  Rest
## 6052  Rest
## 6053  Rest
## 6054  West
## 6055  West
## 6056  Rest
## 6057  Rest
## 6058  West
## 6059  West
## 6060  Rest
## 6061  Rest
## 6062  Rest
## 6063  Rest
## 6064  Rest
## 6065  Rest
## 6066  West
## 6067  Rest
## 6068  Rest
## 6069  Rest
## 6070  West
## 6071  West
## 6072  Rest
## 6073  Rest
## 6074  West
## 6075  Rest
## 6076  Rest
## 6077  Rest
## 6078  Rest
## 6079  West
## 6080  West
## 6081  Rest
## 6082  Rest
## 6083  Rest
## 6084  Rest
## 6085  Rest
## 6086  Rest
## 6087  Rest
## 6088  Rest
## 6089  Rest
## 6090  Rest
## 6091  Rest
## 6092  Rest
## 6093  West
## 6094  Rest
## 6095  West
## 6096  West
## 6097  Rest
## 6098  Rest
## 6099  Rest
## 6100  Rest
## 6101  Rest
## 6102  Rest
## 6103  Rest
## 6104  Rest
## 6105  Rest
## 6106  West
## 6107  Rest
## 6108  Rest
## 6109  Rest
## 6110  Rest
## 6111  Rest
## 6112  Rest
## 6113  Rest
## 6114  West
## 6115  Rest
## 6116  Rest
## 6117  Rest
## 6118  Rest
## 6119  Rest
## 6120  West
## 6121  West
## 6122  Rest
## 6123  Rest
## 6124  Rest
## 6125  Rest
## 6126  West
## 6127  Rest
## 6128  Rest
## 6129  Rest
## 6130  West
## 6131  Rest
## 6132  Rest
## 6133  Rest
## 6134  Rest
## 6135  West
## 6136  Rest
## 6137  Rest
## 6138  Rest
## 6139  Rest
## 6140  Rest
## 6141  Rest
## 6142  Rest
## 6143  Rest
## 6144  Rest
## 6145  Rest
## 6146  Rest
## 6147  West
## 6148  Rest
## 6149  Rest
## 6150  West
## 6151  West
## 6152  Rest
## 6153  Rest
## 6154  Rest
## 6155  Rest
## 6156  Rest
## 6157  Rest
## 6158  Rest
## 6159  West
## 6160  Rest
## 6161  Rest
## 6162  West
## 6163  West
## 6164  Rest
## 6165  Rest
## 6166  Rest
## 6167  Rest
## 6168  West
## 6169  Rest
## 6170  West
## 6171  West
## 6172  Rest
## 6173  Rest
## 6174  Rest
## 6175  Rest
## 6176  Rest
## 6177  Rest
## 6178  Rest
## 6179  Rest
## 6180  West
## 6181  West
## 6182  Rest
## 6183  Rest
## 6184  Rest
## 6185  Rest
## 6186  West
## 6187  Rest
## 6188  West
## 6189  Rest
## 6190  Rest
## 6191  Rest
## 6192  Rest
## 6193  Rest
## 6194  Rest
## 6195  Rest
## 6196  Rest
## 6197  Rest
## 6198  Rest
## 6199  West
## 6200  Rest
## 6201  Rest
## 6202  Rest
## 6203  Rest
## 6204  West
## 6205  West
## 6206  Rest
## 6207  West
## 6208  Rest
## 6209  Rest
## 6210  Rest
## 6211  Rest
## 6212  Rest
## 6213  West
## 6214  Rest
## 6215  Rest
## 6216  Rest
## 6217  Rest
## 6218  West
## 6219  Rest
## 6220  West
## 6221  Rest
## 6222  Rest
## 6223  Rest
## 6224  Rest
## 6225  West
## 6226  Rest
## 6227  Rest
## 6228  Rest
## 6229  Rest
## 6230  Rest
## 6231  West
## 6232  Rest
## 6233  Rest
## 6234  Rest
## 6235  Rest
## 6236  Rest
## 6237  Rest
## 6238  Rest
## 6239  West
## 6240  West
## 6241  Rest
## 6242  Rest
## 6243  West
## 6244  West
## 6245  Rest
## 6246  Rest
## 6247  Rest
## 6248  Rest
## 6249  Rest
## 6250  Rest
## 6251  West
## 6252  Rest
## 6253  Rest
## 6254  Rest
## 6255  West
## 6256  West
## 6257  Rest
## 6258  Rest
## 6259  West
## 6260  Rest
## 6261  Rest
## 6262  Rest
## 6263  Rest
## 6264  West
## 6265  West
## 6266  Rest
## 6267  Rest
## 6268  Rest
## 6269  Rest
## 6270  Rest
## 6271  Rest
## 6272  Rest
## 6273  Rest
## 6274  Rest
## 6275  Rest
## 6276  Rest
## 6277  Rest
## 6278  West
## 6279  Rest
## 6280  West
## 6281  West
## 6282  Rest
## 6283  Rest
## 6284  Rest
## 6285  Rest
## 6286  Rest
## 6287  Rest
## 6288  Rest
## 6289  Rest
## 6290  Rest
## 6291  West
## 6292  Rest
## 6293  Rest
## 6294  Rest
## 6295  Rest
## 6296  Rest
## 6297  Rest
## 6298  Rest
## 6299  West
## 6300  Rest
## 6301  Rest
## 6302  Rest
## 6303  Rest
## 6304  Rest
## 6305  West
## 6306  West
## 6307  Rest
## 6308  Rest
## 6309  Rest
## 6310  Rest
## 6311  West
## 6312  Rest
## 6313  Rest
## 6314  Rest
## 6315  West
## 6316  Rest
## 6317  Rest
## 6318  Rest
## 6319  Rest
## 6320  West
## 6321  Rest
## 6322  Rest
## 6323  Rest
## 6324  Rest
## 6325  Rest
## 6326  Rest
## 6327  Rest
## 6328  Rest
## 6329  Rest
## 6330  Rest
## 6331  Rest
## 6332  West
## 6333  Rest
## 6334  Rest
## 6335  West
## 6336  West
## 6337  Rest
## 6338  Rest
## 6339  Rest
## 6340  Rest
## 6341  Rest
## 6342  Rest
## 6343  Rest
## 6344  West
## 6345  Rest
## 6346  Rest
## 6347  West
## 6348  West
## 6349  Rest
## 6350  Rest
## 6351  Rest
## 6352  Rest
## 6353  West
## 6354  Rest
## 6355  West
## 6356  West
## 6357  Rest
## 6358  Rest
## 6359  Rest
## 6360  Rest
## 6361  Rest
## 6362  Rest
## 6363  Rest
## 6364  Rest
## 6365  West
## 6366  West
## 6367  Rest
## 6368  Rest
## 6369  Rest
## 6370  Rest
## 6371  West
## 6372  Rest
## 6373  West
## 6374  Rest
## 6375  Rest
## 6376  Rest
## 6377  Rest
## 6378  Rest
## 6379  Rest
## 6380  Rest
## 6381  Rest
## 6382  Rest
## 6383  Rest
## 6384  West
## 6385  Rest
## 6386  Rest
## 6387  Rest
## 6388  Rest
## 6389  West
## 6390  West
## 6391  Rest
## 6392  West
## 6393  Rest
## 6394  Rest
## 6395  Rest
## 6396  Rest
## 6397  Rest
## 6398  West
## 6399  Rest
## 6400  Rest
## 6401  Rest
## 6402  Rest
## 6403  West
## 6404  Rest
## 6405  West
## 6406  Rest
## 6407  Rest
## 6408  Rest
## 6409  Rest
## 6410  West
## 6411  Rest
## 6412  Rest
## 6413  Rest
## 6414  Rest
## 6415  Rest
## 6416  West
## 6417  Rest
## 6418  Rest
## 6419  Rest
## 6420  Rest
## 6421  Rest
## 6422  Rest
## 6423  Rest
## 6424  West
## 6425  West
## 6426  Rest
## 6427  Rest
## 6428  West
## 6429  West
## 6430  Rest
## 6431  Rest
## 6432  Rest
## 6433  Rest
## 6434  Rest
## 6435  Rest
## 6436  West
## 6437  Rest
## 6438  Rest
## 6439  Rest
## 6440  West
## 6441  West
## 6442  Rest
## 6443  Rest
## 6444  West
## 6445  Rest
## 6446  Rest
## 6447  Rest
## 6448  Rest
## 6449  West
## 6450  West
## 6451  Rest
## 6452  Rest
## 6453  Rest
## 6454  Rest
## 6455  Rest
## 6456  Rest
## 6457  Rest
## 6458  Rest
## 6459  Rest
## 6460  Rest
## 6461  Rest
## 6462  Rest
## 6463  West
## 6464  Rest
## 6465  West
## 6466  West
## 6467  Rest
## 6468  Rest
## 6469  Rest
## 6470  Rest
## 6471  Rest
## 6472  Rest
## 6473  Rest
## 6474  Rest
## 6475  Rest
## 6476  West
## 6477  Rest
## 6478  Rest
## 6479  Rest
## 6480  Rest
## 6481  Rest
## 6482  Rest
## 6483  Rest
## 6484  West
## 6485  Rest
## 6486  Rest
## 6487  Rest
## 6488  Rest
## 6489  Rest
## 6490  West
## 6491  West
## 6492  Rest
## 6493  Rest
## 6494  Rest
## 6495  Rest
## 6496  West
## 6497  Rest
## 6498  Rest
## 6499  Rest
## 6500  West
## 6501  Rest
## 6502  Rest
## 6503  Rest
## 6504  Rest
## 6505  West
## 6506  Rest
## 6507  Rest
## 6508  Rest
## 6509  Rest
## 6510  Rest
## 6511  Rest
## 6512  Rest
## 6513  Rest
## 6514  Rest
## 6515  Rest
## 6516  Rest
## 6517  West
## 6518  Rest
## 6519  Rest
## 6520  West
## 6521  West
## 6522  Rest
## 6523  Rest
## 6524  Rest
## 6525  Rest
## 6526  Rest
## 6527  Rest
## 6528  Rest
## 6529  West
## 6530  Rest
## 6531  Rest
## 6532  West
## 6533  West
## 6534  Rest
## 6535  Rest
## 6536  Rest
## 6537  Rest
## 6538  West
## 6539  Rest
## 6540  West
## 6541  West
## 6542  Rest
## 6543  Rest
## 6544  Rest
## 6545  Rest
## 6546  Rest
## 6547  Rest
## 6548  Rest
## 6549  Rest
## 6550  West
## 6551  West
## 6552  Rest
## 6553  Rest
## 6554  Rest
## 6555  Rest
## 6556  West
## 6557  Rest
## 6558  West
## 6559  Rest
## 6560  Rest
## 6561  Rest
## 6562  Rest
## 6563  Rest
## 6564  Rest
## 6565  Rest
## 6566  Rest
## 6567  Rest
## 6568  Rest
## 6569  West
## 6570  Rest
## 6571  Rest
## 6572  Rest
## 6573  Rest
## 6574  West
## 6575  West
## 6576  Rest
## 6577  West
## 6578  Rest
## 6579  Rest
## 6580  Rest
## 6581  Rest
## 6582  Rest
## 6583  West
## 6584  Rest
## 6585  Rest
## 6586  Rest
## 6587  Rest
## 6588  West
## 6589  Rest
## 6590  West
## 6591  Rest
## 6592  Rest
## 6593  Rest
## 6594  Rest
## 6595  West
## 6596  Rest
## 6597  Rest
## 6598  Rest
## 6599  Rest
## 6600  Rest
## 6601  West
## 6602  Rest
## 6603  Rest
## 6604  Rest
## 6605  Rest
## 6606  Rest
## 6607  Rest
## 6608  Rest
## 6609  West
## 6610  West
## 6611  Rest
## 6612  Rest
## 6613  West
## 6614  West
## 6615  Rest
## 6616  Rest
## 6617  Rest
## 6618  Rest
## 6619  Rest
## 6620  Rest
## 6621  West
## 6622  Rest
## 6623  Rest
## 6624  Rest
## 6625  West
## 6626  West
## 6627  Rest
## 6628  Rest
## 6629  West
## 6630  Rest
## 6631  Rest
## 6632  Rest
## 6633  Rest
## 6634  West
## 6635  West
## 6636  Rest
## 6637  Rest
## 6638  Rest
## 6639  Rest
## 6640  Rest
## 6641  Rest
## 6642  Rest
## 6643  Rest
## 6644  Rest
## 6645  Rest
## 6646  Rest
## 6647  Rest
## 6648  West
## 6649  Rest
## 6650  West
## 6651  West
## 6652  Rest
## 6653  Rest
## 6654  Rest
## 6655  Rest
## 6656  Rest
## 6657  Rest
## 6658  Rest
## 6659  Rest
## 6660  Rest
## 6661  West
## 6662  Rest
## 6663  Rest
## 6664  Rest
## 6665  Rest
## 6666  Rest
## 6667  Rest
## 6668  Rest
## 6669  West
## 6670  Rest
## 6671  Rest
## 6672  Rest
## 6673  Rest
## 6674  Rest
## 6675  West
## 6676  West
## 6677  Rest
## 6678  Rest
## 6679  Rest
## 6680  Rest
## 6681  West
## 6682  Rest
## 6683  Rest
## 6684  Rest
## 6685  West
## 6686  Rest
## 6687  Rest
## 6688  Rest
## 6689  Rest
## 6690  West
## 6691  Rest
## 6692  Rest
## 6693  Rest
## 6694  Rest
## 6695  Rest
## 6696  Rest
## 6697  Rest
## 6698  Rest
## 6699  Rest
## 6700  Rest
## 6701  Rest
## 6702  West
## 6703  Rest
## 6704  Rest
## 6705  West
## 6706  West
## 6707  Rest
## 6708  Rest
## 6709  Rest
## 6710  Rest
## 6711  Rest
## 6712  Rest
## 6713  Rest
## 6714  West
## 6715  Rest
## 6716  Rest
## 6717  West
## 6718  West
## 6719  Rest
## 6720  Rest
## 6721  Rest
## 6722  Rest
## 6723  West
## 6724  Rest
## 6725  West
## 6726  West
## 6727  Rest
## 6728  Rest
## 6729  Rest
## 6730  Rest
## 6731  Rest
## 6732  Rest
## 6733  Rest
## 6734  Rest
## 6735  West
## 6736  West
## 6737  Rest
## 6738  Rest
## 6739  Rest
## 6740  Rest
## 6741  West
## 6742  Rest
## 6743  West
## 6744  Rest
## 6745  Rest
## 6746  Rest
## 6747  Rest
## 6748  Rest
## 6749  Rest
## 6750  Rest
## 6751  Rest
## 6752  Rest
## 6753  Rest
## 6754  West
## 6755  Rest
## 6756  Rest
## 6757  Rest
## 6758  Rest
## 6759  West
## 6760  West
## 6761  Rest
## 6762  West
## 6763  Rest
## 6764  Rest
## 6765  Rest
## 6766  Rest
## 6767  Rest
## 6768  West
## 6769  Rest
## 6770  Rest
## 6771  Rest
## 6772  Rest
## 6773  West
## 6774  Rest
## 6775  West
## 6776  Rest
## 6777  Rest
## 6778  Rest
## 6779  Rest
## 6780  West
## 6781  Rest
## 6782  Rest
## 6783  Rest
## 6784  Rest
## 6785  Rest
## 6786  West
## 6787  Rest
## 6788  Rest
## 6789  Rest
## 6790  Rest
## 6791  Rest
## 6792  Rest
## 6793  Rest
## 6794  West
## 6795  West
## 6796  Rest
## 6797  Rest
## 6798  West
## 6799  West
## 6800  Rest
## 6801  Rest
## 6802  Rest
## 6803  Rest
## 6804  Rest
## 6805  Rest
## 6806  West
## 6807  Rest
## 6808  Rest
## 6809  Rest
## 6810  West
## 6811  West
## 6812  Rest
## 6813  Rest
## 6814  West
## 6815  Rest
## 6816  Rest
## 6817  Rest
## 6818  Rest
## 6819  West
## 6820  West
## 6821  Rest
## 6822  Rest
## 6823  Rest
## 6824  Rest
## 6825  Rest
## 6826  Rest
## 6827  Rest
## 6828  Rest
## 6829  Rest
## 6830  Rest
## 6831  Rest
## 6832  Rest
## 6833  West
## 6834  Rest
## 6835  West
## 6836  West
## 6837  Rest
## 6838  Rest
## 6839  Rest
## 6840  Rest
## 6841  Rest
## 6842  Rest
## 6843  Rest
## 6844  Rest
## 6845  Rest
## 6846  West
## 6847  Rest
## 6848  Rest
## 6849  Rest
## 6850  Rest
## 6851  Rest
## 6852  Rest
## 6853  Rest
## 6854  West
## 6855  Rest
## 6856  Rest
## 6857  Rest
## 6858  Rest
## 6859  Rest
## 6860  West
## 6861  West
## 6862  Rest
## 6863  Rest
## 6864  Rest
## 6865  Rest
## 6866  West
## 6867  Rest
## 6868  Rest
## 6869  Rest
## 6870  West
## 6871  Rest
## 6872  Rest
## 6873  Rest
## 6874  Rest
## 6875  West
## 6876  Rest
## 6877  Rest
## 6878  Rest
## 6879  Rest
## 6880  Rest
## 6881  Rest
## 6882  Rest
## 6883  Rest
## 6884  Rest
## 6885  Rest
## 6886  Rest
## 6887  West
## 6888  Rest
## 6889  Rest
## 6890  West
## 6891  West
## 6892  Rest
## 6893  Rest
## 6894  Rest
## 6895  Rest
## 6896  Rest
## 6897  Rest
## 6898  Rest
## 6899  West
## 6900  Rest
## 6901  Rest
## 6902  West
## 6903  West
## 6904  Rest
## 6905  Rest
## 6906  Rest
## 6907  Rest
## 6908  West
## 6909  Rest
## 6910  West
## 6911  West
## 6912  Rest
## 6913  Rest
## 6914  Rest
## 6915  Rest
## 6916  Rest
## 6917  Rest
## 6918  Rest
## 6919  Rest
## 6920  West
## 6921  West
## 6922  Rest
## 6923  Rest
## 6924  Rest
## 6925  Rest
## 6926  West
## 6927  Rest
## 6928  West
## 6929  Rest
## 6930  Rest
## 6931  Rest
## 6932  Rest
## 6933  Rest
## 6934  Rest
## 6935  Rest
## 6936  Rest
## 6937  Rest
## 6938  Rest
## 6939  West
## 6940  Rest
## 6941  Rest
## 6942  Rest
## 6943  Rest
## 6944  West
## 6945  West
## 6946  Rest
## 6947  West
## 6948  Rest
## 6949  Rest
## 6950  Rest
## 6951  Rest
## 6952  Rest
## 6953  West
## 6954  Rest
## 6955  Rest
## 6956  Rest
## 6957  Rest
## 6958  West
## 6959  Rest
## 6960  West
## 6961  Rest
## 6962  Rest
## 6963  Rest
## 6964  Rest
## 6965  West
## 6966  Rest
## 6967  Rest
## 6968  Rest
## 6969  Rest
## 6970  Rest
## 6971  West
## 6972  Rest
## 6973  Rest
## 6974  Rest
## 6975  Rest
## 6976  Rest
## 6977  Rest
## 6978  Rest
## 6979  West
## 6980  West
## 6981  Rest
## 6982  Rest
## 6983  West
## 6984  West
## 6985  Rest
## 6986  Rest
## 6987  Rest
## 6988  Rest
## 6989  Rest
## 6990  Rest
## 6991  West
## 6992  Rest
## 6993  Rest
## 6994  Rest
## 6995  West
## 6996  West
## 6997  Rest
## 6998  Rest
## 6999  West
## 7000  Rest
## 7001  Rest
## 7002  Rest
## 7003  Rest
## 7004  West
## 7005  West
## 7006  Rest
## 7007  Rest
## 7008  Rest
## 7009  Rest
## 7010  Rest
## 7011  Rest
## 7012  Rest
## 7013  Rest
## 7014  Rest
## 7015  Rest
## 7016  Rest
## 7017  Rest
## 7018  West
## 7019  Rest
## 7020  West
## 7021  West
## 7022  Rest
## 7023  Rest
## 7024  Rest
## 7025  Rest
## 7026  Rest
## 7027  Rest
## 7028  Rest
## 7029  Rest
## 7030  Rest
## 7031  West
## 7032  Rest
## 7033  Rest
## 7034  Rest
## 7035  Rest
## 7036  Rest
## 7037  Rest
## 7038  Rest
## 7039  West
## 7040  Rest
## 7041  Rest
## 7042  Rest
## 7043  Rest
## 7044  Rest
## 7045  West
## 7046  West
## 7047  Rest
## 7048  Rest
## 7049  Rest
## 7050  Rest
## 7051  West
## 7052  Rest
## 7053  Rest
## 7054  Rest
## 7055  West
## 7056  Rest
## 7057  Rest
## 7058  Rest
## 7059  Rest
## 7060  West
## 7061  Rest
## 7062  Rest
## 7063  Rest
## 7064  Rest
## 7065  Rest
## 7066  Rest
## 7067  Rest
## 7068  Rest
## 7069  Rest
## 7070  Rest
## 7071  Rest
## 7072  West
## 7073  Rest
## 7074  Rest
## 7075  West
## 7076  West
## 7077  Rest
## 7078  Rest
## 7079  Rest
## 7080  Rest
## 7081  Rest
## 7082  Rest
## 7083  Rest
## 7084  West
## 7085  Rest
## 7086  Rest
## 7087  West
## 7088  West
## 7089  Rest
## 7090  Rest
## 7091  Rest
## 7092  Rest
## 7093  West
## 7094  Rest
## 7095  West
## 7096  West
## 7097  Rest
## 7098  Rest
## 7099  Rest
## 7100  Rest
## 7101  Rest
## 7102  Rest
## 7103  Rest
## 7104  Rest
## 7105  West
## 7106  West
## 7107  Rest
## 7108  Rest
## 7109  Rest
## 7110  Rest
## 7111  West
## 7112  Rest
## 7113  West
## 7114  Rest
## 7115  Rest
## 7116  Rest
## 7117  Rest
## 7118  Rest
## 7119  Rest
## 7120  Rest
## 7121  Rest
## 7122  Rest
## 7123  Rest
## 7124  West
## 7125  Rest
## 7126  Rest
## 7127  Rest
## 7128  Rest
## 7129  West
## 7130  West
## 7131  Rest
## 7132  West
## 7133  Rest
## 7134  Rest
## 7135  Rest
## 7136  Rest
## 7137  Rest
## 7138  West
## 7139  Rest
## 7140  Rest
## 7141  Rest
## 7142  Rest
## 7143  West
## 7144  Rest
## 7145  West
## 7146  Rest
## 7147  Rest
## 7148  Rest
## 7149  Rest
## 7150  West
## 7151  Rest
## 7152  Rest
## 7153  Rest
## 7154  Rest
## 7155  Rest
## 7156  West
## 7157  Rest
## 7158  Rest
## 7159  Rest
## 7160  Rest
## 7161  Rest
## 7162  Rest
## 7163  Rest
## 7164  West
## 7165  West
## 7166  Rest
## 7167  Rest
## 7168  West
## 7169  West
## 7170  Rest
## 7171  Rest
## 7172  Rest
## 7173  Rest
## 7174  Rest
## 7175  Rest
## 7176  West
## 7177  Rest
## 7178  Rest
## 7179  Rest
## 7180  West
## 7181  West
## 7182  Rest
## 7183  Rest
## 7184  West
## 7185  Rest
## 7186  Rest
## 7187  Rest
## 7188  Rest
## 7189  West
## 7190  West
## 7191  Rest
## 7192  Rest
## 7193  Rest
## 7194  Rest
## 7195  Rest
## 7196  Rest
## 7197  Rest
## 7198  Rest
## 7199  Rest
## 7200  Rest
## 7201  Rest
## 7202  Rest
## 7203  West
## 7204  Rest
## 7205  West
## 7206  West
## 7207  Rest
## 7208  Rest
## 7209  Rest
## 7210  Rest
## 7211  Rest
## 7212  Rest
## 7213  Rest
## 7214  Rest
## 7215  Rest
## 7216  West
## 7217  Rest
## 7218  Rest
## 7219  Rest
## 7220  Rest
## 7221  Rest
## 7222  Rest
## 7223  Rest
## 7224  West
## 7225  Rest
## 7226  Rest
## 7227  Rest
## 7228  Rest
## 7229  Rest
## 7230  West
## 7231  West
## 7232  Rest
## 7233  Rest
## 7234  Rest
## 7235  Rest
## 7236  West
## 7237  Rest
## 7238  Rest
## 7239  Rest
## 7240  West
## 7241  Rest
## 7242  Rest
## 7243  Rest
## 7244  Rest
## 7245  West
## 7246  Rest
## 7247  Rest
## 7248  Rest
## 7249  Rest
## 7250  Rest
## 7251  Rest
## 7252  Rest
## 7253  Rest
## 7254  Rest
## 7255  Rest
## 7256  Rest
## 7257  West
## 7258  Rest
## 7259  Rest
## 7260  West
## 7261  West
## 7262  Rest
## 7263  Rest
## 7264  Rest
## 7265  Rest
## 7266  Rest
## 7267  Rest
## 7268  Rest
## 7269  West
## 7270  Rest
## 7271  Rest
## 7272  West
## 7273  West
## 7274  Rest
## 7275  Rest
## 7276  Rest
## 7277  Rest
## 7278  West
## 7279  Rest
## 7280  West
## 7281  West
## 7282  Rest
## 7283  Rest
## 7284  Rest
## 7285  Rest
## 7286  Rest
## 7287  Rest
## 7288  Rest
## 7289  Rest
## 7290  West
## 7291  West
## 7292  Rest
## 7293  Rest
## 7294  Rest
## 7295  Rest
## 7296  West
## 7297  Rest
## 7298  West
## 7299  Rest
## 7300  Rest
## 7301  Rest
## 7302  Rest
## 7303  Rest
## 7304  Rest
## 7305  Rest
## 7306  Rest
## 7307  Rest
## 7308  Rest
## 7309  West
## 7310  Rest
## 7311  Rest
## 7312  Rest
## 7313  Rest
## 7314  West
## 7315  West
## 7316  Rest
## 7317  West
## 7318  Rest
## 7319  Rest
## 7320  Rest
## 7321  Rest
## 7322  Rest
## 7323  West
## 7324  Rest
## 7325  Rest
## 7326  Rest
## 7327  Rest
## 7328  West
## 7329  Rest
## 7330  West
## 7331  Rest
## 7332  Rest
## 7333  Rest
## 7334  Rest
## 7335  West
## 7336  Rest
## 7337  Rest
## 7338  Rest
## 7339  Rest
## 7340  Rest
## 7341  West
## 7342  Rest
## 7343  Rest
## 7344  Rest
## 7345  Rest
## 7346  Rest
## 7347  Rest
## 7348  Rest
## 7349  West
## 7350  West
## 7351  Rest
## 7352  Rest
## 7353  West
## 7354  West
## 7355  Rest
## 7356  Rest
## 7357  Rest
## 7358  Rest
## 7359  Rest
## 7360  Rest
## 7361  West
## 7362  Rest
## 7363  Rest
## 7364  Rest
## 7365  West
## 7366  West
## 7367  Rest
## 7368  Rest
## 7369  West
## 7370  Rest
## 7371  Rest
## 7372  Rest
## 7373  Rest
## 7374  West
## 7375  West
## 7376  Rest
## 7377  Rest
## 7378  Rest
## 7379  Rest
## 7380  Rest
## 7381  Rest
## 7382  Rest
## 7383  Rest
## 7384  Rest
## 7385  Rest
## 7386  Rest
## 7387  Rest
## 7388  West
## 7389  Rest
## 7390  West
## 7391  West
## 7392  Rest
## 7393  Rest
## 7394  Rest
## 7395  Rest
## 7396  Rest
## 7397  Rest
## 7398  Rest
## 7399  Rest
## 7400  Rest
## 7401  West
## 7402  Rest
## 7403  Rest
## 7404  Rest
## 7405  Rest
## 7406  Rest
## 7407  Rest
## 7408  Rest
## 7409  West
## 7410  Rest
## 7411  Rest
## 7412  Rest
## 7413  Rest
## 7414  Rest
## 7415  West
## 7416  West
## 7417  Rest
## 7418  Rest
## 7419  Rest
## 7420  Rest
## 7421  West
## 7422  Rest
## 7423  Rest
## 7424  Rest
## 7425  West
## 7426  Rest
## 7427  Rest
## 7428  Rest
## 7429  Rest
## 7430  West
## 7431  Rest
## 7432  Rest
## 7433  Rest
## 7434  Rest
## 7435  Rest
## 7436  Rest
## 7437  Rest
## 7438  Rest
## 7439  Rest
## 7440  Rest
## 7441  Rest
## 7442  West
## 7443  Rest
## 7444  Rest
## 7445  West
## 7446  West
## 7447  Rest
## 7448  Rest
## 7449  Rest
## 7450  Rest
## 7451  Rest
## 7452  Rest
## 7453  Rest
## 7454  West
## 7455  Rest
## 7456  Rest
## 7457  West
## 7458  West
## 7459  Rest
## 7460  Rest
## 7461  Rest
## 7462  Rest
## 7463  West
## 7464  Rest
## 7465  West
## 7466  West
## 7467  Rest
## 7468  Rest
## 7469  Rest
## 7470  Rest
## 7471  Rest
## 7472  Rest
## 7473  Rest
## 7474  Rest
## 7475  West
## 7476  West
## 7477  Rest
## 7478  Rest
## 7479  Rest
## 7480  Rest
## 7481  West
## 7482  Rest
## 7483  West
## 7484  Rest
## 7485  Rest
## 7486  Rest
## 7487  Rest
## 7488  Rest
## 7489  Rest
## 7490  Rest
## 7491  Rest
## 7492  Rest
## 7493  Rest
## 7494  West
## 7495  Rest
## 7496  Rest
## 7497  Rest
## 7498  Rest
## 7499  West
## 7500  West
## 7501  Rest
## 7502  West
## 7503  Rest
## 7504  Rest
## 7505  Rest
## 7506  Rest
## 7507  Rest
## 7508  West
## 7509  Rest
## 7510  Rest
## 7511  Rest
## 7512  Rest
## 7513  West
## 7514  Rest
## 7515  West
## 7516  Rest
## 7517  Rest
## 7518  Rest
## 7519  Rest
## 7520  West
## 7521  Rest
## 7522  Rest
## 7523  Rest
## 7524  Rest
## 7525  Rest
## 7526  West
## 7527  Rest
## 7528  Rest
## 7529  Rest
## 7530  Rest
## 7531  Rest
## 7532  Rest
## 7533  Rest
## 7534  West
## 7535  West
## 7536  Rest
## 7537  Rest
## 7538  West
## 7539  West
## 7540  Rest
## 7541  Rest
## 7542  Rest
## 7543  Rest
## 7544  Rest
## 7545  Rest
## 7546  West
## 7547  Rest
## 7548  Rest
## 7549  Rest
## 7550  West
## 7551  West
## 7552  Rest
## 7553  Rest
## 7554  West
## 7555  Rest
## 7556  Rest
## 7557  Rest
## 7558  Rest
## 7559  West
## 7560  West
## 7561  Rest
## 7562  Rest
## 7563  Rest
## 7564  Rest
## 7565  Rest
## 7566  Rest
## 7567  Rest
## 7568  Rest
## 7569  Rest
## 7570  Rest
## 7571  Rest
## 7572  Rest
## 7573  West
## 7574  Rest
## 7575  West
## 7576  West
## 7577  Rest
## 7578  Rest
## 7579  Rest
## 7580  Rest
## 7581  Rest
## 7582  Rest
## 7583  Rest
## 7584  Rest
## 7585  Rest
## 7586  West
## 7587  Rest
## 7588  Rest
## 7589  Rest
## 7590  Rest
## 7591  Rest
## 7592  Rest
## 7593  Rest
## 7594  West
## 7595  Rest
## 7596  Rest
## 7597  Rest
## 7598  Rest
## 7599  Rest
## 7600  West
## 7601  West
## 7602  Rest
## 7603  Rest
## 7604  Rest
## 7605  Rest
## 7606  West
## 7607  Rest
## 7608  Rest
## 7609  Rest
## 7610  West
## 7611  Rest
## 7612  Rest
## 7613  Rest
## 7614  Rest
## 7615  West
## 7616  Rest
## 7617  Rest
## 7618  Rest
## 7619  Rest
## 7620  Rest
## 7621  Rest
## 7622  Rest
## 7623  Rest
## 7624  Rest
## 7625  Rest
## 7626  Rest
## 7627  West
## 7628  Rest
## 7629  Rest
## 7630  West
## 7631  West
## 7632  Rest
## 7633  Rest
## 7634  Rest
## 7635  Rest
## 7636  Rest
## 7637  Rest
## 7638  Rest
## 7639  West
## 7640  Rest
## 7641  Rest
## 7642  West
## 7643  West
## 7644  Rest
## 7645  Rest
## 7646  Rest
## 7647  Rest
## 7648  West
## 7649  Rest
## 7650  West
## 7651  West
## 7652  Rest
## 7653  Rest
## 7654  Rest
## 7655  Rest
## 7656  Rest
## 7657  Rest
## 7658  Rest
## 7659  Rest
## 7660  West
## 7661  West
## 7662  Rest
## 7663  Rest
## 7664  Rest
## 7665  Rest
## 7666  West
## 7667  Rest
## 7668  West
## 7669  Rest
## 7670  Rest
## 7671  Rest
## 7672  Rest
## 7673  Rest
## 7674  Rest
## 7675  Rest
## 7676  Rest
## 7677  Rest
## 7678  Rest
## 7679  West
## 7680  Rest
## 7681  Rest
## 7682  Rest
## 7683  Rest
## 7684  West
## 7685  West
## 7686  Rest
## 7687  West
## 7688  Rest
## 7689  Rest
## 7690  Rest
## 7691  Rest
## 7692  Rest
## 7693  West
## 7694  Rest
## 7695  Rest
## 7696  Rest
## 7697  Rest
## 7698  West
## 7699  Rest
## 7700  West
## 7701  Rest
## 7702  Rest
## 7703  Rest
## 7704  Rest
## 7705  West
## 7706  Rest
## 7707  Rest
## 7708  Rest
## 7709  Rest
## 7710  Rest
## 7711  West
## 7712  Rest
## 7713  Rest
## 7714  Rest
## 7715  Rest
## 7716  Rest
## 7717  Rest
## 7718  Rest
## 7719  West
## 7720  West
## 7721  Rest
## 7722  Rest
## 7723  West
## 7724  West
## 7725  Rest
## 7726  Rest
## 7727  Rest
## 7728  Rest
## 7729  Rest
## 7730  Rest
## 7731  West
## 7732  Rest
## 7733  Rest
## 7734  Rest
## 7735  West
## 7736  West
## 7737  Rest
## 7738  Rest
## 7739  West
## 7740  Rest
## 7741  Rest
## 7742  Rest
## 7743  Rest
## 7744  West
## 7745  West
## 7746  Rest
## 7747  Rest
## 7748  Rest
## 7749  Rest
## 7750  Rest
## 7751  Rest
## 7752  Rest
## 7753  Rest
## 7754  Rest
## 7755  Rest
## 7756  Rest
## 7757  Rest
## 7758  West
## 7759  Rest
## 7760  West
## 7761  West
## 7762  Rest
## 7763  Rest
## 7764  Rest
## 7765  Rest
## 7766  Rest
## 7767  Rest
## 7768  Rest
## 7769  Rest
## 7770  Rest
## 7771  West
## 7772  Rest
## 7773  Rest
## 7774  Rest
## 7775  Rest
## 7776  Rest
## 7777  Rest
## 7778  Rest
## 7779  West
## 7780  Rest
## 7781  Rest
## 7782  Rest
## 7783  Rest
## 7784  Rest
## 7785  West
## 7786  West
## 7787  Rest
## 7788  Rest
## 7789  Rest
## 7790  Rest
## 7791  West
## 7792  Rest
## 7793  Rest
## 7794  Rest
## 7795  West
## 7796  Rest
## 7797  Rest
## 7798  Rest
## 7799  Rest
## 7800  West
## 7801  Rest
## 7802  Rest
## 7803  Rest
## 7804  Rest
## 7805  Rest
## 7806  Rest
## 7807  Rest
## 7808  Rest
## 7809  Rest
## 7810  Rest
## 7811  Rest
## 7812  West
## 7813  Rest
## 7814  Rest
## 7815  West
## 7816  West
## 7817  Rest
## 7818  Rest
## 7819  Rest
## 7820  Rest
## 7821  Rest
## 7822  Rest
## 7823  Rest
## 7824  West
## 7825  Rest
## 7826  Rest
## 7827  West
## 7828  West
## 7829  Rest
## 7830  Rest
## 7831  Rest
## 7832  Rest
## 7833  West
## 7834  Rest
## 7835  West
## 7836  West
## 7837  Rest
## 7838  Rest
## 7839  Rest
## 7840  Rest
## 7841  Rest
## 7842  Rest
## 7843  Rest
## 7844  Rest
## 7845  West
## 7846  West
## 7847  Rest
## 7848  Rest
## 7849  Rest
## 7850  Rest
## 7851  West
## 7852  Rest
## 7853  West
## 7854  Rest
## 7855  Rest
## 7856  Rest
## 7857  Rest
## 7858  Rest
## 7859  Rest
## 7860  Rest
## 7861  Rest
## 7862  Rest
## 7863  Rest
## 7864  West
## 7865  Rest
## 7866  Rest
## 7867  Rest
## 7868  Rest
## 7869  West
## 7870  West
## 7871  Rest
## 7872  West
## 7873  Rest
## 7874  Rest
## 7875  Rest
## 7876  Rest
## 7877  Rest
## 7878  West
## 7879  Rest
## 7880  Rest
## 7881  Rest
## 7882  Rest
## 7883  West
## 7884  Rest
## 7885  West
## 7886  Rest
## 7887  Rest
## 7888  Rest
## 7889  Rest
## 7890  West
## 7891  Rest
## 7892  Rest
## 7893  Rest
## 7894  Rest
## 7895  Rest
## 7896  West
## 7897  Rest
## 7898  Rest
## 7899  Rest
## 7900  Rest
## 7901  Rest
## 7902  Rest
## 7903  Rest
## 7904  West
## 7905  West
## 7906  Rest
## 7907  Rest
## 7908  West
## 7909  West
## 7910  Rest
## 7911  Rest
## 7912  Rest
## 7913  Rest
## 7914  Rest
## 7915  Rest
## 7916  West
## 7917  Rest
## 7918  Rest
## 7919  Rest
## 7920  West
## 7921  West
## 7922  Rest
## 7923  Rest
## 7924  West
## 7925  Rest
## 7926  Rest
## 7927  Rest
## 7928  Rest
## 7929  West
## 7930  West
## 7931  Rest
## 7932  Rest
## 7933  Rest
## 7934  Rest
## 7935  Rest
## 7936  Rest
## 7937  Rest
## 7938  Rest
## 7939  Rest
## 7940  Rest
## 7941  Rest
## 7942  Rest
## 7943  West
## 7944  Rest
## 7945  West
## 7946  West
## 7947  Rest
## 7948  Rest
## 7949  Rest
## 7950  Rest
## 7951  Rest
## 7952  Rest
## 7953  Rest
## 7954  Rest
## 7955  Rest
## 7956  West
## 7957  Rest
## 7958  Rest
## 7959  Rest
## 7960  Rest
## 7961  Rest
## 7962  Rest
## 7963  Rest
## 7964  West
## 7965  Rest
## 7966  Rest
## 7967  Rest
## 7968  Rest
## 7969  Rest
## 7970  West
## 7971  West
## 7972  Rest
## 7973  Rest
## 7974  Rest
## 7975  Rest
## 7976  West
## 7977  Rest
## 7978  Rest
## 7979  Rest
## 7980  West
## 7981  Rest
## 7982  Rest
## 7983  Rest
## 7984  Rest
## 7985  West
## 7986  Rest
## 7987  Rest
## 7988  Rest
## 7989  Rest
## 7990  Rest
## 7991  Rest
## 7992  Rest
## 7993  Rest
## 7994  Rest
## 7995  Rest
## 7996  Rest
## 7997  West
## 7998  Rest
## 7999  Rest
## 8000  West
## 8001  West
## 8002  Rest
## 8003  Rest
## 8004  Rest
## 8005  Rest
## 8006  Rest
## 8007  Rest
## 8008  Rest
## 8009  West
## 8010  Rest
## 8011  Rest
## 8012  West
## 8013  West
## 8014  Rest
## 8015  Rest
## 8016  Rest
## 8017  Rest
## 8018  West
## 8019  Rest
## 8020  West
## 8021  West
## 8022  Rest
## 8023  Rest
## 8024  Rest
## 8025  Rest
## 8026  Rest
## 8027  Rest
## 8028  Rest
## 8029  Rest
## 8030  West
## 8031  West
## 8032  Rest
## 8033  Rest
## 8034  Rest
## 8035  Rest
## 8036  West
## 8037  Rest
## 8038  West
## 8039  Rest
## 8040  Rest
## 8041  Rest
## 8042  Rest
## 8043  Rest
## 8044  Rest
## 8045  Rest
## 8046  Rest
## 8047  Rest
## 8048  Rest
## 8049  West
## 8050  Rest
## 8051  Rest
## 8052  Rest
## 8053  Rest
## 8054  West
## 8055  West
## 8056  Rest
## 8057  West
## 8058  Rest
## 8059  Rest
## 8060  Rest
## 8061  Rest
## 8062  Rest
## 8063  West
## 8064  Rest
## 8065  Rest
## 8066  Rest
## 8067  Rest
## 8068  West
## 8069  Rest
## 8070  West
## 8071  Rest
## 8072  Rest
## 8073  Rest
## 8074  Rest
## 8075  West
## 8076  Rest
## 8077  Rest
## 8078  Rest
## 8079  Rest
## 8080  Rest
## 8081  West
## 8082  Rest
## 8083  Rest
## 8084  Rest
## 8085  Rest
## 8086  Rest
## 8087  Rest
## 8088  Rest
## 8089  West
## 8090  West
## 8091  Rest
## 8092  Rest
## 8093  West
## 8094  West
## 8095  Rest
## 8096  Rest
## 8097  Rest
## 8098  Rest
## 8099  Rest
## 8100  Rest
## 8101  West
## 8102  Rest
## 8103  Rest
## 8104  Rest
## 8105  West
## 8106  West
## 8107  Rest
## 8108  Rest
## 8109  West
## 8110  Rest
## 8111  Rest
## 8112  Rest
## 8113  Rest
## 8114  West
## 8115  West
## 8116  Rest
## 8117  Rest
## 8118  Rest
## 8119  Rest
## 8120  Rest
## 8121  Rest
## 8122  Rest
## 8123  Rest
## 8124  Rest
## 8125  Rest
## 8126  Rest
## 8127  Rest
## 8128  West
## 8129  Rest
## 8130  West
## 8131  West
## 8132  Rest
## 8133  Rest
## 8134  Rest
## 8135  Rest
## 8136  Rest
## 8137  Rest
## 8138  Rest
## 8139  Rest
## 8140  Rest
## 8141  West
## 8142  Rest
## 8143  Rest
## 8144  Rest
## 8145  Rest
## 8146  Rest
## 8147  Rest
## 8148  Rest
## 8149  West
## 8150  Rest
## 8151  Rest
## 8152  Rest
## 8153  Rest
## 8154  Rest
## 8155  West
## 8156  West
## 8157  Rest
## 8158  Rest
## 8159  Rest
## 8160  Rest
## 8161  West
## 8162  Rest
## 8163  Rest
## 8164  Rest
## 8165  West
## 8166  Rest
## 8167  Rest
## 8168  Rest
## 8169  Rest
## 8170  West
## 8171  Rest
## 8172  Rest
## 8173  Rest
## 8174  Rest
## 8175  Rest
## 8176  Rest
## 8177  Rest
## 8178  Rest
## 8179  Rest
## 8180  Rest
## 8181  Rest
## 8182  West
## 8183  Rest
## 8184  Rest
## 8185  West
## 8186  West
## 8187  Rest
## 8188  Rest
## 8189  Rest
## 8190  Rest
## 8191  Rest
## 8192  Rest
## 8193  Rest
## 8194  West
## 8195  Rest
## 8196  Rest
## 8197  West
## 8198  West
## 8199  Rest
## 8200  Rest
## 8201  Rest
## 8202  Rest
## 8203  West
## 8204  Rest
## 8205  West
## 8206  West
## 8207  Rest
## 8208  Rest
## 8209  Rest
## 8210  Rest
## 8211  Rest
## 8212  Rest
## 8213  Rest
## 8214  Rest
## 8215  West
## 8216  West
## 8217  Rest
## 8218  Rest
## 8219  Rest
## 8220  Rest
## 8221  West
## 8222  Rest
## 8223  West
## 8224  Rest
## 8225  Rest
## 8226  Rest
## 8227  Rest
## 8228  Rest
## 8229  Rest
## 8230  Rest
## 8231  Rest
## 8232  Rest
## 8233  Rest
## 8234  West
## 8235  Rest
## 8236  Rest
## 8237  Rest
## 8238  Rest
## 8239  West
## 8240  West
## 8241  Rest
## 8242  West
## 8243  Rest
## 8244  Rest
## 8245  Rest
## 8246  Rest
## 8247  Rest
## 8248  West
## 8249  Rest
## 8250  Rest
## 8251  Rest
## 8252  Rest
## 8253  West
## 8254  Rest
## 8255  West
## 8256  Rest
## 8257  Rest
## 8258  Rest
## 8259  Rest
## 8260  West
## 8261  Rest
## 8262  Rest
## 8263  Rest
## 8264  Rest
## 8265  Rest
## 8266  West
## 8267  Rest
## 8268  Rest
## 8269  Rest
## 8270  Rest
## 8271  Rest
## 8272  Rest
## 8273  Rest
## 8274  West
## 8275  West
## 8276  Rest
## 8277  Rest
## 8278  West
## 8279  West
## 8280  Rest
## 8281  Rest
## 8282  Rest
## 8283  Rest
## 8284  Rest
## 8285  Rest
## 8286  West
## 8287  Rest
## 8288  Rest
## 8289  Rest
## 8290  West
## 8291  West
## 8292  Rest
## 8293  Rest
## 8294  West
## 8295  Rest
## 8296  Rest
## 8297  Rest
## 8298  Rest
## 8299  West
## 8300  West
## 8301  Rest
## 8302  Rest
## 8303  Rest
## 8304  Rest
## 8305  Rest
## 8306  Rest
## 8307  Rest
## 8308  Rest
## 8309  Rest
## 8310  Rest
## 8311  Rest
## 8312  Rest
## 8313  West
## 8314  Rest
## 8315  West
## 8316  West
## 8317  Rest
## 8318  Rest
## 8319  Rest
## 8320  Rest
## 8321  Rest
## 8322  Rest
## 8323  Rest
## 8324  Rest
## 8325  Rest
## 8326  West
## 8327  Rest
## 8328  Rest
## 8329  Rest
## 8330  Rest
## 8331  Rest
## 8332  Rest
## 8333  Rest
## 8334  West
## 8335  Rest
## 8336  Rest
## 8337  Rest
## 8338  Rest
## 8339  Rest
## 8340  West
## 8341  West
## 8342  Rest
## 8343  Rest
## 8344  Rest
## 8345  Rest
## 8346  West
## 8347  Rest
## 8348  Rest
## 8349  Rest
## 8350  West
## 8351  Rest
## 8352  Rest
## 8353  Rest
## 8354  Rest
## 8355  West
## 8356  Rest
## 8357  Rest
## 8358  Rest
## 8359  Rest
## 8360  Rest
## 8361  Rest
## 8362  Rest
## 8363  Rest
## 8364  Rest
## 8365  Rest
## 8366  Rest
## 8367  West
## 8368  Rest
## 8369  Rest
## 8370  West
## 8371  West
## 8372  Rest
## 8373  Rest
## 8374  Rest
## 8375  Rest
## 8376  Rest
## 8377  Rest
## 8378  Rest
## 8379  West
## 8380  Rest
## 8381  Rest
## 8382  West
## 8383  West
## 8384  Rest
## 8385  Rest
## 8386  Rest
## 8387  Rest
## 8388  West
## 8389  Rest
## 8390  West
## 8391  West
## 8392  Rest
## 8393  Rest
## 8394  Rest
## 8395  Rest
## 8396  Rest
## 8397  Rest
## 8398  Rest
## 8399  Rest
## 8400  West
## 8401  West
## 8402  Rest
## 8403  Rest
## 8404  Rest
## 8405  Rest
## 8406  West
## 8407  Rest
## 8408  West
## 8409  Rest
## 8410  Rest
## 8411  Rest
## 8412  Rest
## 8413  Rest
## 8414  Rest
## 8415  Rest
## 8416  Rest
## 8417  Rest
## 8418  Rest
## 8419  West
## 8420  Rest
## 8421  Rest
## 8422  Rest
## 8423  Rest
## 8424  West
## 8425  West
## 8426  Rest
## 8427  West
## 8428  Rest
## 8429  Rest
## 8430  Rest
## 8431  Rest
## 8432  Rest
## 8433  West
## 8434  Rest
## 8435  Rest
## 8436  Rest
## 8437  Rest
## 8438  West
## 8439  Rest
## 8440  West
## 8441  Rest
## 8442  Rest
## 8443  Rest
## 8444  Rest
## 8445  West
## 8446  Rest
## 8447  Rest
## 8448  Rest
## 8449  Rest
## 8450  Rest
## 8451  West
## 8452  Rest
## 8453  Rest
## 8454  Rest
## 8455  Rest
## 8456  Rest
## 8457  Rest
## 8458  Rest
## 8459  West
## 8460  West
## 8461  Rest
## 8462  Rest
## 8463  West
## 8464  West
## 8465  Rest
## 8466  Rest
## 8467  Rest
## 8468  Rest
## 8469  Rest
## 8470  Rest
## 8471  West
## 8472  Rest
## 8473  Rest
## 8474  Rest
## 8475  West
## 8476  West
## 8477  Rest
## 8478  Rest
## 8479  West
## 8480  Rest
## 8481  Rest
## 8482  Rest
## 8483  Rest
## 8484  West
## 8485  West
## 8486  Rest
## 8487  Rest
## 8488  Rest
## 8489  Rest
## 8490  Rest
## 8491  Rest
## 8492  Rest
## 8493  Rest
## 8494  Rest
## 8495  Rest
## 8496  Rest
## 8497  Rest
## 8498  West
## 8499  Rest
## 8500  West
## 8501  West
## 8502  Rest
## 8503  Rest
## 8504  Rest
## 8505  Rest
## 8506  Rest
## 8507  Rest
## 8508  Rest
## 8509  Rest
## 8510  Rest
## 8511  West
## 8512  Rest
## 8513  Rest
## 8514  Rest
## 8515  Rest
## 8516  Rest
## 8517  Rest
## 8518  Rest
## 8519  West
## 8520  Rest
## 8521  Rest
## 8522  Rest
## 8523  Rest
## 8524  Rest
## 8525  West
## 8526  West
## 8527  Rest
## 8528  Rest
## 8529  Rest
## 8530  Rest
## 8531  West
## 8532  Rest
## 8533  Rest
## 8534  Rest
## 8535  West
## 8536  Rest
## 8537  Rest
## 8538  Rest
## 8539  Rest
## 8540  West
## 8541  Rest
## 8542  Rest
## 8543  Rest
## 8544  Rest
## 8545  Rest
## 8546  Rest
## 8547  Rest
## 8548  Rest
## 8549  Rest
## 8550  Rest
## 8551  Rest
## 8552  West
## 8553  Rest
## 8554  Rest
## 8555  West
## 8556  West
## 8557  Rest
## 8558  Rest
## 8559  Rest
## 8560  Rest
## 8561  Rest
## 8562  Rest
## 8563  Rest
## 8564  West
## 8565  Rest
## 8566  Rest
## 8567  West
## 8568  West
## 8569  Rest
## 8570  Rest
## 8571  Rest
## 8572  Rest
## 8573  West
## 8574  Rest
## 8575  West
## 8576  West
## 8577  Rest
## 8578  Rest
## 8579  Rest
## 8580  Rest
## 8581  Rest
## 8582  Rest
## 8583  Rest
## 8584  Rest
## 8585  West
## 8586  West
## 8587  Rest
## 8588  Rest
## 8589  Rest
## 8590  Rest
## 8591  West
## 8592  Rest
## 8593  West
## 8594  Rest
## 8595  Rest
## 8596  Rest
## 8597  Rest
## 8598  Rest
## 8599  Rest
## 8600  Rest
## 8601  Rest
## 8602  Rest
## 8603  Rest
## 8604  West
## 8605  Rest
## 8606  Rest
## 8607  Rest
## 8608  Rest
## 8609  West
## 8610  West
## 8611  Rest
## 8612  West
## 8613  Rest
## 8614  Rest
## 8615  Rest
## 8616  Rest
## 8617  Rest
## 8618  West
## 8619  Rest
## 8620  Rest
## 8621  Rest
## 8622  Rest
## 8623  West
## 8624  Rest
## 8625  West
## 8626  Rest
## 8627  Rest
## 8628  Rest
## 8629  Rest
## 8630  West
## 8631  Rest
## 8632  Rest
## 8633  Rest
## 8634  Rest
## 8635  Rest
## 8636  West
## 8637  Rest
## 8638  Rest
## 8639  Rest
## 8640  Rest
## 8641  Rest
## 8642  Rest
## 8643  Rest
## 8644  West
## 8645  West
## 8646  Rest
## 8647  Rest
## 8648  West
## 8649  West
## 8650  Rest
## 8651  Rest
## 8652  Rest
## 8653  Rest
## 8654  Rest
## 8655  Rest
## 8656  West
## 8657  Rest
## 8658  Rest
## 8659  Rest
## 8660  West
## 8661  West
## 8662  Rest
## 8663  Rest
## 8664  West
## 8665  Rest
## 8666  Rest
## 8667  Rest
## 8668  Rest
## 8669  West
## 8670  West
## 8671  Rest
## 8672  Rest
## 8673  Rest
## 8674  Rest
## 8675  Rest
## 8676  Rest
## 8677  Rest
## 8678  Rest
## 8679  Rest
## 8680  Rest
## 8681  Rest
## 8682  Rest
## 8683  West
## 8684  Rest
## 8685  West
## 8686  West
## 8687  Rest
## 8688  Rest
## 8689  Rest
## 8690  Rest
## 8691  Rest
## 8692  Rest
## 8693  Rest
## 8694  Rest
## 8695  Rest
## 8696  West
## 8697  Rest
## 8698  Rest
## 8699  Rest
## 8700  Rest
## 8701  Rest
## 8702  Rest
## 8703  Rest
## 8704  West
## 8705  Rest
## 8706  Rest
## 8707  Rest
## 8708  Rest
## 8709  Rest
## 8710  West
## 8711  West
## 8712  Rest
## 8713  Rest
## 8714  Rest
## 8715  Rest
## 8716  West
## 8717  Rest
## 8718  Rest
## 8719  Rest
## 8720  West
## 8721  Rest
## 8722  Rest
## 8723  Rest
## 8724  Rest
## 8725  West
## 8726  Rest
## 8727  Rest
## 8728  Rest
## 8729  Rest
## 8730  Rest
## 8731  Rest
## 8732  Rest
## 8733  Rest
## 8734  Rest
## 8735  Rest
## 8736  Rest
## 8737  West
## 8738  Rest
## 8739  Rest
## 8740  West
## 8741  West
## 8742  Rest
## 8743  Rest
## 8744  Rest
## 8745  Rest
## 8746  Rest
## 8747  Rest
## 8748  Rest
## 8749  West
## 8750  Rest
## 8751  Rest
## 8752  West
## 8753  West
## 8754  Rest
## 8755  Rest
## 8756  Rest
## 8757  Rest
## 8758  West
## 8759  Rest
## 8760  West
## 8761  West
## 8762  Rest
## 8763  Rest
## 8764  Rest
## 8765  Rest
## 8766  Rest
## 8767  Rest
## 8768  Rest
## 8769  Rest
## 8770  West
## 8771  West
## 8772  Rest
## 8773  Rest
## 8774  Rest
## 8775  Rest
## 8776  West
## 8777  Rest
## 8778  West
## 8779  Rest
## 8780  Rest
## 8781  Rest
## 8782  Rest
## 8783  Rest
## 8784  Rest
## 8785  Rest
## 8786  Rest
## 8787  Rest
## 8788  Rest
## 8789  West
## 8790  Rest
## 8791  Rest
## 8792  Rest
## 8793  Rest
## 8794  West
## 8795  West
## 8796  Rest
## 8797  West
## 8798  Rest
## 8799  Rest
## 8800  Rest
## 8801  Rest
## 8802  Rest
## 8803  West
## 8804  Rest
## 8805  Rest
## 8806  Rest
## 8807  Rest
## 8808  West
## 8809  Rest
## 8810  West
## 8811  Rest
## 8812  Rest
## 8813  Rest
## 8814  Rest
## 8815  West
## 8816  Rest
## 8817  Rest
## 8818  Rest
## 8819  Rest
## 8820  Rest
## 8821  West
## 8822  Rest
## 8823  Rest
## 8824  Rest
## 8825  Rest
## 8826  Rest
## 8827  Rest
## 8828  Rest
## 8829  West
## 8830  West
## 8831  Rest
## 8832  Rest
## 8833  West
## 8834  West
## 8835  Rest
## 8836  Rest
## 8837  Rest
## 8838  Rest
## 8839  Rest
## 8840  Rest
## 8841  West
## 8842  Rest
## 8843  Rest
## 8844  Rest
## 8845  West
## 8846  West
## 8847  Rest
## 8848  Rest
## 8849  West
## 8850  Rest
## 8851  Rest
## 8852  Rest
## 8853  Rest
## 8854  West
## 8855  West
## 8856  Rest
## 8857  Rest
## 8858  Rest
## 8859  Rest
## 8860  Rest
## 8861  Rest
## 8862  Rest
## 8863  Rest
## 8864  Rest
## 8865  Rest
## 8866  Rest
## 8867  Rest
## 8868  West
## 8869  Rest
## 8870  West
## 8871  West
## 8872  Rest
## 8873  Rest
## 8874  Rest
## 8875  Rest
## 8876  Rest
## 8877  Rest
## 8878  Rest
## 8879  Rest
## 8880  Rest
## 8881  West
## 8882  Rest
## 8883  Rest
## 8884  Rest
## 8885  Rest
## 8886  Rest
## 8887  Rest
## 8888  Rest
## 8889  West
## 8890  Rest
## 8891  Rest
## 8892  Rest
## 8893  Rest
## 8894  Rest
## 8895  West
## 8896  West
## 8897  Rest
## 8898  Rest
## 8899  Rest
## 8900  Rest
## 8901  West
## 8902  Rest
## 8903  Rest
## 8904  Rest
## 8905  West
## 8906  Rest
## 8907  Rest
## 8908  Rest
## 8909  Rest
## 8910  West
## 8911  Rest
## 8912  Rest
## 8913  Rest
## 8914  Rest
## 8915  Rest
## 8916  Rest
## 8917  Rest
## 8918  Rest
## 8919  Rest
## 8920  Rest
## 8921  Rest
## 8922  West
## 8923  Rest
## 8924  Rest
## 8925  West
## 8926  West
## 8927  Rest
## 8928  Rest
## 8929  Rest
## 8930  Rest
## 8931  Rest
## 8932  Rest
## 8933  Rest
## 8934  West
## 8935  Rest
## 8936  Rest
## 8937  West
## 8938  West
## 8939  Rest
## 8940  Rest
## 8941  Rest
## 8942  Rest
## 8943  West
## 8944  Rest
## 8945  West
## 8946  West
## 8947  Rest
## 8948  Rest
## 8949  Rest
## 8950  Rest
## 8951  Rest
## 8952  Rest
## 8953  Rest
## 8954  Rest
## 8955  West
## 8956  West
## 8957  Rest
## 8958  Rest
## 8959  Rest
## 8960  Rest
## 8961  West
## 8962  Rest
## 8963  West
## 8964  Rest
## 8965  Rest
## 8966  Rest
## 8967  Rest
## 8968  Rest
## 8969  Rest
## 8970  Rest
## 8971  Rest
## 8972  Rest
## 8973  Rest
## 8974  West
## 8975  Rest
## 8976  Rest
## 8977  Rest
## 8978  Rest
## 8979  West
## 8980  West
## 8981  Rest
## 8982  West
## 8983  Rest
## 8984  Rest
## 8985  Rest
## 8986  Rest
## 8987  Rest
## 8988  West
## 8989  Rest
## 8990  Rest
## 8991  Rest
## 8992  Rest
## 8993  West
## 8994  Rest
## 8995  West
## 8996  Rest
## 8997  Rest
## 8998  Rest
## 8999  Rest
## 9000  West
## 9001  Rest
## 9002  Rest
## 9003  Rest
## 9004  Rest
## 9005  Rest
## 9006  West
## 9007  Rest
## 9008  Rest
## 9009  Rest
## 9010  Rest
## 9011  Rest
## 9012  Rest
## 9013  Rest
## 9014  West
## 9015  West
## 9016  Rest
## 9017  Rest
## 9018  West
## 9019  West
## 9020  Rest
## 9021  Rest
## 9022  Rest
## 9023  Rest
## 9024  Rest
## 9025  Rest
## 9026  West
## 9027  Rest
## 9028  Rest
## 9029  Rest
## 9030  West
## 9031  West
## 9032  Rest
## 9033  Rest
## 9034  West
## 9035  Rest
## 9036  Rest
## 9037  Rest
## 9038  Rest
## 9039  West
## 9040  West
## 9041  Rest
## 9042  Rest
## 9043  Rest
## 9044  Rest
## 9045  Rest
## 9046  Rest
## 9047  Rest
## 9048  Rest
## 9049  Rest
## 9050  Rest
## 9051  Rest
## 9052  Rest
## 9053  West
## 9054  Rest
## 9055  West
## 9056  West
## 9057  Rest
## 9058  Rest
## 9059  Rest
## 9060  Rest
## 9061  Rest
## 9062  Rest
## 9063  Rest
## 9064  Rest
## 9065  Rest
## 9066  West
## 9067  Rest
## 9068  Rest
## 9069  Rest
## 9070  Rest
## 9071  Rest
## 9072  Rest
## 9073  Rest
## 9074  West
## 9075  Rest
## 9076  Rest
## 9077  Rest
## 9078  Rest
## 9079  Rest
## 9080  West
## 9081  West
## 9082  Rest
## 9083  Rest
## 9084  Rest
## 9085  Rest
## 9086  West
## 9087  Rest
## 9088  Rest
## 9089  Rest
## 9090  West
## 9091  Rest
## 9092  Rest
## 9093  Rest
## 9094  Rest
## 9095  West
## 9096  Rest
## 9097  Rest
## 9098  Rest
## 9099  Rest
## 9100  Rest
## 9101  Rest
## 9102  Rest
## 9103  Rest
## 9104  Rest
## 9105  Rest
## 9106  Rest
## 9107  West
## 9108  Rest
## 9109  Rest
## 9110  West
## 9111  West
## 9112  Rest
## 9113  Rest
## 9114  Rest
## 9115  Rest
## 9116  Rest
## 9117  Rest
## 9118  Rest
## 9119  West
## 9120  Rest
## 9121  Rest
## 9122  West
## 9123  West
## 9124  Rest
## 9125  Rest
## 9126  Rest
## 9127  Rest
## 9128  West
## 9129  Rest
## 9130  West
## 9131  West
## 9132  Rest
## 9133  Rest
## 9134  Rest
## 9135  Rest
## 9136  Rest
## 9137  Rest
## 9138  Rest
## 9139  Rest
## 9140  West
## 9141  West
## 9142  Rest
## 9143  Rest
## 9144  Rest
## 9145  Rest
## 9146  West
## 9147  Rest
## 9148  West
## 9149  Rest
## 9150  Rest
## 9151  Rest
## 9152  Rest
## 9153  Rest
## 9154  Rest
## 9155  Rest
## 9156  Rest
## 9157  Rest
## 9158  Rest
## 9159  West
## 9160  Rest
## 9161  Rest
## 9162  Rest
## 9163  Rest
## 9164  West
## 9165  West
## 9166  Rest
## 9167  West
## 9168  Rest
## 9169  Rest
## 9170  Rest
## 9171  Rest
## 9172  Rest
## 9173  West
## 9174  Rest
## 9175  Rest
## 9176  Rest
## 9177  Rest
## 9178  West
## 9179  Rest
## 9180  West
## 9181  Rest
## 9182  Rest
## 9183  Rest
## 9184  Rest
## 9185  West
## 9186  Rest
## 9187  Rest
## 9188  Rest
## 9189  Rest
## 9190  Rest
## 9191  West
## 9192  Rest
## 9193  Rest
## 9194  Rest
## 9195  Rest
## 9196  Rest
## 9197  Rest
## 9198  Rest
## 9199  West
## 9200  West
## 9201  Rest
## 9202  Rest
## 9203  West
## 9204  West
## 9205  Rest
## 9206  Rest
## 9207  Rest
## 9208  Rest
## 9209  Rest
## 9210  Rest
## 9211  West
## 9212  Rest
## 9213  Rest
## 9214  Rest
## 9215  West
## 9216  West
## 9217  Rest
## 9218  Rest
## 9219  West
## 9220  Rest
## 9221  Rest
## 9222  Rest
## 9223  Rest
## 9224  West
## 9225  West
## 9226  Rest
## 9227  Rest
## 9228  Rest
## 9229  Rest
## 9230  Rest
## 9231  Rest
## 9232  Rest
## 9233  Rest
## 9234  Rest
## 9235  Rest
## 9236  Rest
## 9237  Rest
## 9238  West
## 9239  Rest
## 9240  West
## 9241  West
## 9242  Rest
## 9243  Rest
## 9244  Rest
## 9245  Rest
## 9246  Rest
## 9247  Rest
## 9248  Rest
## 9249  Rest
## 9250  Rest
## 9251  West
## 9252  Rest
## 9253  Rest
## 9254  Rest
## 9255  Rest
## 9256  Rest
## 9257  Rest
## 9258  Rest
## 9259  West
## 9260  Rest
## 9261  Rest
## 9262  Rest
## 9263  Rest
## 9264  Rest
## 9265  West
## 9266  West
## 9267  Rest
## 9268  Rest
## 9269  Rest
## 9270  Rest
## 9271  West
## 9272  Rest
## 9273  Rest
## 9274  Rest
## 9275  West
## 9276  Rest
## 9277  Rest
## 9278  Rest
## 9279  Rest
## 9280  West
## 9281  Rest
## 9282  Rest
## 9283  Rest
## 9284  Rest
## 9285  Rest
## 9286  Rest
## 9287  Rest
## 9288  Rest
## 9289  Rest
## 9290  Rest
## 9291  Rest
## 9292  West
## 9293  Rest
## 9294  Rest
## 9295  West
## 9296  West
## 9297  Rest
## 9298  Rest
## 9299  Rest
## 9300  Rest
## 9301  Rest
## 9302  Rest
## 9303  Rest
## 9304  West
## 9305  Rest
## 9306  Rest
## 9307  West
## 9308  West
## 9309  Rest
## 9310  Rest
## 9311  Rest
## 9312  Rest
## 9313  West
## 9314  Rest
## 9315  West
## 9316  West
## 9317  Rest
## 9318  Rest
## 9319  Rest
## 9320  Rest
## 9321  Rest
## 9322  Rest
## 9323  Rest
## 9324  Rest
## 9325  West
## 9326  West
## 9327  Rest
## 9328  Rest
## 9329  Rest
## 9330  Rest
## 9331  West
## 9332  Rest
## 9333  West
## 9334  Rest
## 9335  Rest
## 9336  Rest
## 9337  Rest
## 9338  Rest
## 9339  Rest
## 9340  Rest
## 9341  Rest
## 9342  Rest
## 9343  Rest
## 9344  West
## 9345  Rest
## 9346  Rest
## 9347  Rest
## 9348  Rest
## 9349  West
## 9350  West
## 9351  Rest
## 9352  West
## 9353  Rest
## 9354  Rest
## 9355  Rest
## 9356  Rest
## 9357  Rest
## 9358  West
## 9359  Rest
## 9360  Rest
## 9361  Rest
## 9362  Rest
## 9363  West
## 9364  Rest
## 9365  West
## 9366  Rest
## 9367  Rest
## 9368  Rest
## 9369  Rest
## 9370  West
## 9371  Rest
## 9372  Rest
## 9373  Rest
## 9374  Rest
## 9375  Rest
## 9376  West
## 9377  Rest
## 9378  Rest
## 9379  Rest
## 9380  Rest
## 9381  Rest
## 9382  Rest
## 9383  Rest
## 9384  West
## 9385  West
## 9386  Rest
## 9387  Rest
## 9388  West
## 9389  West
## 9390  Rest
## 9391  Rest
## 9392  Rest
## 9393  Rest
## 9394  Rest
## 9395  Rest
## 9396  West
## 9397  Rest
## 9398  Rest
## 9399  Rest
## 9400  West
## 9401  West
## 9402  Rest
## 9403  Rest
## 9404  West
## 9405  Rest
## 9406  Rest
## 9407  Rest
## 9408  Rest
## 9409  West
## 9410  West
## 9411  Rest
## 9412  Rest
## 9413  Rest
## 9414  Rest
## 9415  Rest
## 9416  Rest
## 9417  Rest
## 9418  Rest
## 9419  Rest
## 9420  Rest
## 9421  Rest
## 9422  Rest
## 9423  West
## 9424  Rest
## 9425  West
## 9426  West
## 9427  Rest
## 9428  Rest
## 9429  Rest
## 9430  Rest
## 9431  Rest
## 9432  Rest
## 9433  Rest
## 9434  Rest
## 9435  Rest
## 9436  West
## 9437  Rest
## 9438  Rest
## 9439  Rest
## 9440  Rest
## 9441  Rest
## 9442  Rest
## 9443  Rest
## 9444  West
## 9445  Rest
## 9446  Rest
## 9447  Rest
## 9448  Rest
## 9449  Rest
## 9450  West
## 9451  West
## 9452  Rest
## 9453  Rest
## 9454  Rest
## 9455  Rest
## 9456  West
## 9457  Rest
## 9458  Rest
## 9459  Rest
## 9460  West
## 9461  Rest
## 9462  Rest
## 9463  Rest
## 9464  Rest
## 9465  West
## 9466  Rest
## 9467  Rest
## 9468  Rest
## 9469  Rest
## 9470  Rest
## 9471  Rest
## 9472  Rest
## 9473  Rest
## 9474  Rest
## 9475  Rest
## 9476  Rest
## 9477  West
## 9478  Rest
## 9479  Rest
## 9480  West
## 9481  West
## 9482  Rest
## 9483  Rest
## 9484  Rest
## 9485  Rest
## 9486  Rest
## 9487  Rest
## 9488  Rest
## 9489  West
## 9490  Rest
## 9491  Rest
## 9492  West
## 9493  West
## 9494  Rest
## 9495  Rest
## 9496  Rest
## 9497  Rest
## 9498  West
## 9499  Rest
## 9500  West
## 9501  West
## 9502  Rest
## 9503  Rest
## 9504  Rest
## 9505  Rest
## 9506  Rest
## 9507  Rest
## 9508  Rest
## 9509  Rest
## 9510  West
## 9511  West
## 9512  Rest
## 9513  Rest
## 9514  Rest
## 9515  Rest
## 9516  West
## 9517  Rest
## 9518  West
## 9519  Rest
## 9520  Rest
## 9521  Rest
## 9522  Rest
## 9523  Rest
## 9524  Rest
## 9525  Rest
## 9526  Rest
## 9527  Rest
## 9528  Rest
## 9529  West
## 9530  Rest
## 9531  Rest
## 9532  Rest
## 9533  Rest
## 9534  West
## 9535  West
## 9536  Rest
## 9537  West
## 9538  Rest
## 9539  Rest
## 9540  Rest
## 9541  Rest
## 9542  Rest
## 9543  West
## 9544  Rest
## 9545  Rest
## 9546  Rest
## 9547  Rest
## 9548  West
## 9549  Rest
## 9550  West
## 9551  Rest
## 9552  Rest
## 9553  Rest
## 9554  Rest
## 9555  West
## 9556  Rest
## 9557  Rest
## 9558  Rest
## 9559  Rest
## 9560  Rest
## 9561  West
## 9562  Rest
## 9563  Rest
## 9564  Rest
## 9565  Rest
## 9566  Rest
## 9567  Rest
## 9568  Rest
## 9569  West
## 9570  West
## 9571  Rest
## 9572  Rest
## 9573  West
## 9574  West
## 9575  Rest
## 9576  Rest
## 9577  Rest
## 9578  Rest
## 9579  Rest
## 9580  Rest
## 9581  West
## 9582  Rest
## 9583  Rest
## 9584  Rest
## 9585  West
## 9586  West
## 9587  Rest
## 9588  Rest
## 9589  West
## 9590  Rest
## 9591  Rest
## 9592  Rest
## 9593  Rest
## 9594  West
## 9595  West
## 9596  Rest
## 9597  Rest
## 9598  Rest
## 9599  Rest
## 9600  Rest
## 9601  Rest
## 9602  Rest
## 9603  Rest
## 9604  Rest
## 9605  Rest
## 9606  Rest
## 9607  Rest
## 9608  West
## 9609  Rest
## 9610  West
## 9611  West
## 9612  Rest
## 9613  Rest
## 9614  Rest
## 9615  Rest
## 9616  Rest
## 9617  Rest
## 9618  Rest
## 9619  Rest
## 9620  Rest
## 9621  West
## 9622  Rest
## 9623  Rest
## 9624  Rest
## 9625  Rest
## 9626  Rest
## 9627  Rest
## 9628  Rest
## 9629  West
## 9630  Rest
## 9631  Rest
## 9632  Rest
## 9633  Rest
## 9634  Rest
## 9635  West
## 9636  West
## 9637  Rest
## 9638  Rest
## 9639  Rest
## 9640  Rest
## 9641  West
## 9642  Rest
## 9643  Rest
## 9644  Rest
## 9645  West
## 9646  Rest
## 9647  Rest
## 9648  Rest
## 9649  Rest
## 9650  West
## 9651  Rest
## 9652  Rest
## 9653  Rest
## 9654  Rest
## 9655  Rest
## 9656  Rest
## 9657  Rest
## 9658  Rest
## 9659  Rest
## 9660  Rest
## 9661  Rest
## 9662  West
## 9663  Rest
## 9664  Rest
## 9665  West
## 9666  West
## 9667  Rest
## 9668  Rest
## 9669  Rest
## 9670  Rest
## 9671  Rest
## 9672  Rest
## 9673  Rest
## 9674  West
## 9675  Rest
## 9676  Rest
## 9677  West
## 9678  West
## 9679  Rest
## 9680  Rest
## 9681  Rest
## 9682  Rest
## 9683  West
## 9684  Rest
## 9685  West
## 9686  West
## 9687  Rest
## 9688  Rest
## 9689  Rest
## 9690  Rest
## 9691  Rest
## 9692  Rest
## 9693  Rest
## 9694  Rest
## 9695  West
## 9696  West
## 9697  Rest
## 9698  Rest
## 9699  Rest
## 9700  Rest
## 9701  West
## 9702  Rest
## 9703  West
## 9704  Rest
## 9705  Rest
## 9706  Rest
## 9707  Rest
## 9708  Rest
## 9709  Rest
## 9710  Rest
## 9711  Rest
## 9712  Rest
## 9713  Rest
## 9714  West
## 9715  Rest
## 9716  Rest
## 9717  Rest
## 9718  Rest
## 9719  West
## 9720  West
## 9721  Rest
## 9722  West
## 9723  Rest
## 9724  Rest
## 9725  Rest
## 9726  Rest
## 9727  Rest
## 9728  West
## 9729  Rest
## 9730  Rest
## 9731  Rest
## 9732  Rest
## 9733  West
## 9734  Rest
## 9735  West
## 9736  Rest
## 9737  Rest
## 9738  Rest
## 9739  Rest
## 9740  West
## 9741  Rest
## 9742  Rest
## 9743  Rest
## 9744  Rest
## 9745  Rest
## 9746  West
## 9747  Rest
## 9748  Rest
## 9749  Rest
## 9750  Rest
## 9751  Rest
## 9752  Rest
## 9753  Rest
## 9754  West
## 9755  West
## 9756  Rest
## 9757  Rest
## 9758  West
## 9759  West
## 9760  Rest
## 9761  Rest
## 9762  Rest
## 9763  Rest
## 9764  Rest
## 9765  Rest
## 9766  West
## 9767  Rest
## 9768  Rest
## 9769  Rest
## 9770  West
## 9771  West
## 9772  Rest
## 9773  Rest
## 9774  West
## 9775  Rest
## 9776  Rest
## 9777  Rest
## 9778  Rest
## 9779  West
## 9780  West
## 9781  Rest
## 9782  Rest
## 9783  Rest
## 9784  Rest
## 9785  Rest
## 9786  Rest
## 9787  Rest
## 9788  Rest
## 9789  Rest
## 9790  Rest
## 9791  Rest
## 9792  Rest
## 9793  West
## 9794  Rest
## 9795  West
## 9796  West
## 9797  Rest
## 9798  Rest
## 9799  Rest
## 9800  Rest
## 9801  Rest
## 9802  Rest
## 9803  Rest
## 9804  Rest
## 9805  Rest
## 9806  West
## 9807  Rest
## 9808  Rest
## 9809  Rest
## 9810  Rest
## 9811  Rest
## 9812  Rest
## 9813  Rest
## 9814  West
## 9815  Rest
## 9816  Rest
## 9817  Rest
## 9818  Rest
## 9819  Rest
## 9820  West
## 9821  West
## 9822  Rest
## 9823  Rest
## 9824  Rest
## 9825  Rest
## 9826  West
## 9827  Rest
## 9828  Rest
## 9829  Rest
## 9830  West
## 9831  Rest
## 9832  Rest
## 9833  Rest
## 9834  Rest
## 9835  West
## 9836  Rest
## 9837  Rest
## 9838  Rest
## 9839  Rest
## 9840  Rest
## 9841  Rest
## 9842  Rest
## 9843  Rest
## 9844  Rest
## 9845  Rest
## 9846  Rest
## 9847  West
## 9848  Rest
## 9849  Rest
## 9850  West
## 9851  West
## 9852  Rest
## 9853  Rest
## 9854  Rest
## 9855  Rest
## 9856  Rest
## 9857  Rest
## 9858  Rest
## 9859  West
## 9860  Rest
## 9861  Rest
## 9862  West
## 9863  West
## 9864  Rest
## 9865  Rest
## 9866  Rest
## 9867  Rest
## 9868  West
## 9869  Rest
## 9870  West
## 9871  West
## 9872  Rest
## 9873  Rest
## 9874  Rest
## 9875  Rest
## 9876  Rest
## 9877  Rest
## 9878  Rest
## 9879  Rest
## 9880  West
## 9881  West
## 9882  Rest
## 9883  Rest
## 9884  Rest
## 9885  Rest
## 9886  West
## 9887  Rest
## 9888  West
## 9889  Rest
## 9890  Rest
## 9891  Rest
## 9892  Rest
## 9893  Rest
## 9894  Rest
## 9895  Rest
## 9896  Rest
## 9897  Rest
## 9898  Rest
## 9899  West
## 9900  Rest
## 9901  Rest
## 9902  Rest
## 9903  Rest
## 9904  West
## 9905  West
## 9906  Rest
## 9907  West
## 9908  Rest
## 9909  Rest
## 9910  Rest
## 9911  Rest
## 9912  Rest
## 9913  West
## 9914  Rest
## 9915  Rest
## 9916  Rest
## 9917  Rest
## 9918  West
## 9919  Rest
## 9920  West
## 9921  Rest
## 9922  Rest
## 9923  Rest
## 9924  Rest
## 9925  West
## 9926  Rest
## 9927  Rest
## 9928  Rest
## 9929  Rest
## 9930  Rest
## 9931  West
## 9932  Rest
## 9933  Rest
## 9934  Rest
## 9935  Rest
## 9936  Rest
## 9937  Rest
## 9938  Rest
## 9939  West
## 9940  West
## 9941  Rest
## 9942  Rest
## 9943  West
## 9944  West
## 9945  Rest
## 9946  Rest
## 9947  Rest
## 9948  Rest
## 9949  Rest
## 9950  Rest
## 9951  West
## 9952  Rest
## 9953  Rest
## 9954  Rest
## 9955  West
## 9956  West
## 9957  Rest
## 9958  Rest
## 9959  West
## 9960  Rest
## 9961  Rest
## 9962  Rest
## 9963  Rest
## 9964  West
## 9965  West
## 9966  Rest
## 9967  Rest
## 9968  Rest
## 9969  Rest
## 9970  Rest
## 9971  Rest
## 9972  Rest
## 9973  Rest
## 9974  Rest
## 9975  Rest
## 9976  Rest
## 9977  Rest
## 9978  West
## 9979  Rest
## 9980  West
## 9981  West
## 9982  Rest
## 9983  Rest
## 9984  Rest
## 9985  Rest
## 9986  Rest
## 9987  Rest
## 9988  Rest
## 9989  Rest
## 9990  Rest
## 9991  West
## 9992  Rest
## 9993  Rest
## 9994  Rest
## 9995  Rest
## 9996  Rest
## 9997  Rest
## 9998  Rest
## 9999  West
##  [ reached 'max' / getOption("max.print") -- omitted 546 rows ]
  head(5)
## [1] 5


Goals for today

  1. Continue to practice data visualization with ggplot2

  2. Continue to practice data transformation with dplyr

  3. Integrate 1) and 2) to explore the gapminder dataset



General instructions




library(tidyverse)
library(dslabs) #install.packages("dslabs")

# After you have loaded the dslabs package, you can access the data stored in `gapminder`. Let's look at the top 5 lines 
gapminder %>% as_tibble() %>% 
  head(5)
## # A tibble: 5 × 9
##   country    year infant_mortality life_expectancy fertility population      gdp
##   <fct>     <int>            <dbl>           <dbl>     <dbl>      <dbl>    <dbl>
## 1 Albania    1960            115.             62.9      6.19    1636054 NA      
## 2 Algeria    1960            148.             47.5      7.65   11124892  1.38e10
## 3 Angola     1960            208              36.0      7.32    5270844 NA      
## 4 Antigua …  1960             NA              63.0      4.43      54681 NA      
## 5 Argentina  1960             59.9            65.4      3.11   20619075  1.08e11
## # … with 2 more variables: continent <fct>, region <fct>




Exercise 1: Use data transformation and visualization to answer the following questions in breakout rooms (45 min)


The mission of the Gapminder Project is to “fight devastating ignorance with a fact-based worldview everyone can understand”. Per their own description, Gapminder identifies systematic misconceptions about important global trends and proportions and uses reliable data to develop easy to understand teaching materials to rid people of their misconceptions.

Several of the questions posted below have been borrowed from their ignorance test

You may first answer these questions based on your intuition, and then use the gapminder dataset to verify if your intuition is correct, either with a summary table of the relevant statistics or with a visualization (ideally both!).

We provide one possible solution for each question, but we highly recommend that you don’t look at them unless you are really stuck.



Question 1: Which five countries had the largest population size in 2015 (the most recent year for which population sizes are included in this dataset), and how has the population sizes in those countries changes since 1960?


One possible solution
click to expand
# Extract a vector with the 5 countries with the largest population size
top5_countries <- gapminder %>%
  filter(year == 2015) %>% 
  arrange(-population) %>% 
  select(country) %>% 
  head(5) %>% 
  .$country

gapminder %>% 
  filter(country %in% top5_countries) %>% 
  ggplot() +
  geom_line(mapping = aes(x = year, y = population, color = country))
## Warning: Removed 5 row(s) containing missing values (geom_path).

# Extract a vector with the 5 countries with the largest population size
top5_countries <- gapminder %>%
  filter(year == 2015) %>% 
  arrange(-population) %>% 
  select(country) %>% 
  head(5) %>% 
  pull()

gapminder %>% 
  filter(country %in% top5_countries) %>% 
  ggplot() +
  geom_line(mapping = aes(x = year, y = population, color = country))
## Warning: Removed 5 row(s) containing missing values (geom_path).



Question 2. Rank the following countries in infant mortality rate in 2015.

Turkey, Poland, South Korea, Russia, Vietnam, South Africa


One possible solution
click to expand
gapminder %>%
  filter(year==2015, country %in% c("Turkey", "Poland", "South Korea", "Russia", "Vietnam", "South Africa")) %>%
  arrange(infant_mortality) %>%
  select(country, infant_mortality) %>% 
  knitr::kable()
country infant_mortality
South Korea 2.9
Poland 4.5
Russia 8.2
Turkey 11.6
Vietnam 17.3
South Africa 33.6



Question 3. What is the general relationship between per-capita GDP and fertility rate?

A. Positive relationship
B. Negetive relationship
C. No relationship

Hint: use the data from 2000


One possible solution
click to expand
gapminder %>%
  filter(year==2000) %>%
  ggplot(aes(y=fertility, x=gdp/population)) +
  geom_point() +
  geom_smooth(se=F, method = "lm")
## `geom_smooth()` using formula 'y ~ x'



Question 4. If you break down the relationship between per-capita GDP and fertility rate by continent, which continent (or regions) stands out as an outlier? (Bonus question: why might this be?)

A. Africa
B. Asia
C. Europe

Hint: use the data from 2000


One possible solution
click to expand
gapminder %>%
  filter(year==2000) %>%
  ggplot(aes(y=fertility, x=gdp/population, color=continent)) +
  geom_point() +
  geom_smooth(se=F, method = "lm") +
  facet_wrap(~continent, scales = "free_y")
## `geom_smooth()` using formula 'y ~ x'

eu_2000 <- gapminder %>%
  filter(year==2000, continent == "Europe") 
eu_2000 %>%
  filter(fertility > 1.5, gdp/population > 20000) %>%
  ggplot(aes(y=fertility, x=gdp/population, color=region)) +
  ggrepel::geom_label_repel(aes(label=country)) +
  geom_point(data=eu_2000)



Question 5. There are roughly seven billion people in the world today. Which map shows where people live? (Each figure represents 1 billion people.)

Hint: use the data from 2015


One possible solution
click to expand
gapminder %>%
  filter(year==2015) %>%
  group_by(continent) %>%
  summarize(population_in_billion=sum(population)/10^9) %>%
  ggplot(aes(x=continent, y=population_in_billion)) +
  geom_col()



Question 6. What is the overall life expectancy for the world population (i.e. global average)?

A. 50 years
B. 60 years
C. 70 years

Hint: use the data from 2015


One possible solution
click to expand
gapminder %>%
  filter(year==2015) %>%
  summarize(life_expectancy=sum(life_expectancy*population)/sum(population))
##   life_expectancy
## 1         72.2457



Question 7. What is the gap in life expectancy between Europe and Africa?

A. 5 years
B. 15 years
C. 25 years

Hint: use the data from 2015


One possible solution
click to expand
gapminder %>%
  filter(year==2015) %>%
  group_by(continent) %>%
  summarize(life_expectancy=sum(life_expectancy*population)/sum(population)) %>%
  ggplot(aes(x=continent, y=life_expectancy)) +
  geom_col()

gapminder %>%
  filter(year==2015) %>%
  ggplot(aes(x=continent, y=life_expectancy)) +
  geom_jitter(aes(color=continent),height = 0) +
  geom_boxplot(alpha=0, outlier.alpha = 0)



Recap (10 minutes)

Share your findings, challenges, and questions with the class.



Short break (10 min)



Exercise 2: Use data transformation and visualization to explore the following open-ended question in breakout rooms (40 min)


This question is borrowed from the excellent Chapter 9 in Rafael A. Irizarry’s Introduction to Data Science book


Explore how much the gap in infant mortality, life expectancy, and per capita GDP between Western countries and the rest of the world have changed from 1960 to 2010.


Suggestions:

  • Visualizing the entire time series and taking certain snapshots of time (e.g. one data point every decade) can both be useful approaches.

  • The range in per capita GDP can be very high, with most countries having low values but a few countries having very high values, so a log transformation may be useful.

  • You can try different definitions of “Western countries” and the “rest of the world”.

  • You can also analyze different subgroups within the broad categorizations of “Western countries” and the “rest of the world” separately.

  • Try to explore different geometric objects. Line plot, scatter plot, density plot, box plot, bar plot, and others can all be useful.


Some ideas if you are really stuck
click to expand
years <- c(1960, 1970, 1980, 1990, 2000, 2010)
continents <- c("Europe", "Asia")
gapminder %>% 
  filter(year %in% years & continent %in% continents) %>%
  ggplot(aes(log(gdp/population), life_expectancy, col = continent)) +
  geom_point() +
  facet_wrap(~year) 
## Warning: Removed 148 rows containing missing values (geom_point).

gapminder %>% 
  filter(continent %in% continents) %>%
  ggplot(aes(x=year, y=life_expectancy, group=country)) +
  geom_line()+
  facet_wrap(~continent) 

gapminder %>% 
  filter(year %in% c(1960, 2010)) %>%
  ggplot(aes(x=life_expectancy, fill=continent)) +
  geom_density(alpha=0.5)+
  facet_wrap(~year, nrow=2) 

gapminder %>% 
  filter(year %in% c(1960, 2010)) %>%
  ggplot(aes(x=log(gdp/population), fill=continent)) +
  geom_density(alpha=0.5)+
  facet_wrap(~year, nrow=2) 
## Warning: Removed 99 rows containing non-finite values (stat_density).

gapminder %>% 
  filter(year %in% c(1960, 2010)) %>%
  ggplot(aes(continent, log(gdp/population), fill = as.character(year))) +
  geom_boxplot()
## Warning: Removed 99 rows containing non-finite values (stat_boxplot).



If you have more time:

Think of another interesting question you can answer with this dataset and explore different strategies for getting your answer.



Recap (10 minutes)

Share your findings, challenges, and questions with the class.


END LAB 3